diff --git a/src/rougail/output_doc/output/github.py b/src/rougail/output_doc/output/github.py index 723a137d1..26b0ac694 100644 --- a/src/rougail/output_doc/output/github.py +++ b/src/rougail/output_doc/output/github.py @@ -20,6 +20,7 @@ from typing import List from html import escape from ..utils import dump, CommonFormatter +from ..i18n import _ class Formatter(CommonFormatter): @@ -153,17 +154,22 @@ class Formatter(CommonFormatter): def to_phrase(self, text: str) -> str: return escape(text) - def family_to_string(self, *args, **kwargs) -> List[str]: - lst = super().family_to_string(*args, **kwargs) - if self.name != 'github': - return lst - ret = lst.pop(0) - if lst: - content = "\n".join([l.strip() for l in lst]).strip() - ret += "\n\n| Informations |\n" - ret += "|:------------|\n" - ret += "| " + content.replace("\n", "
") + " |\n\n" - return [ret] + def family_informations(self) -> str: + info = self.bold(f"πŸ›ˆ {_('Informations')}") # ℹ️ + return self.family_informations_starts_line(info) + "\n" + self.family_informations_starts_line("") + "\n" - def after_family_properties(self) -> str: - return "
" + def family_informations_starts_line(self, line: str) -> str: + return "> " + line + + def family_informations_ends_line(self) -> str: + return "\\\n" +# +# 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] diff --git a/src/rougail/output_doc/output/gitlab.py b/src/rougail/output_doc/output/gitlab.py index 6fc4d88e5..6bd058b44 100644 --- a/src/rougail/output_doc/output/gitlab.py +++ b/src/rougail/output_doc/output/gitlab.py @@ -70,10 +70,10 @@ class Formatter(GithubFormatter): def end_family_informations(self) -> str: return f"\n>>>\n" - def after_family_paths(self) -> str: - return "
" + def family_informations_starts_line(self, line: str) -> str: + return line - def after_family_properties(self) -> str: + def family_informations_ends_line(self) -> str: return "
" def table_header(self, lst): diff --git a/src/rougail/output_doc/utils.py b/src/rougail/output_doc/utils.py index c92df4234..b142dfd09 100644 --- a/src/rougail/output_doc/utils.py +++ b/src/rougail/output_doc/utils.py @@ -310,12 +310,6 @@ class CommonFormatter: ret_paths.append(self.bold(self.anchor(path, path))) return ret_paths - def after_family_paths(self) -> str: - return ENTER - - def after_family_properties(self) -> str: - return ENTER - def table_header( self, lst: list, @@ -356,11 +350,12 @@ class CommonFormatter: informations = value["informations"] msg.append(self.namespace_to_title(informations, ori_level)) msg.append(self.family_informations()) - msg.extend(self.display_paths(informations, {}, None)) - msg.append(self.after_family_paths()) + msg.append(self.family_informations_ends_line().join([self.family_informations_starts_line(p) for p in self.display_paths(informations, {}, None)])) + msg.append(self.family_informations_ends_line()) msg.append( - self.property_to_string(informations, {}, {})[1] + ENTER + self.family_informations_starts_line(self.property_to_string(informations, {}, {})[1]) + self.family_informations_ends_line() ) + print(msg) msg.append(self.end_family_informations()) msg.extend(self.dict_to_dict(value["children"], level)) msg.append(self.end_namespace(ori_level)) @@ -394,12 +389,13 @@ class CommonFormatter: def family_to_string(self, informations: dict, level: int) -> str: """manage other family type""" + ret = [self.title(self.get_description("family", informations, {}, None), level)] msg = [] fam_info = self.family_informations() if fam_info: - msg.append(fam_info) + ret.append(fam_info) msg.append( - self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths() + self.join(self.display_paths(informations, {}, None)) ) helps = informations.get("help") if helps: @@ -410,16 +406,20 @@ class CommonFormatter: if property_str: msg.append(property_str) if calculated_properties: - msg.append( - self.join(calculated_properties) + msg.append(self.join(calculated_properties) ) if "identifier" in informations: msg.append( - self.section(_("Identifiers"), informations["identifier"]) + self.section(_("Identifiers"), informations["identifier"], type_="family") ) - return [self.title(self.get_description("family", informations, {}, None), level), - self.after_family_properties().join(msg) + self.end_family_informations(), - ] + ret.append(self.family_informations_ends_line().join([self.family_informations_starts_line(m) for m in msg]) + self.end_family_informations()) + return ret + + def family_informations_starts_line(self, line: str) -> str: + return line + + def family_informations_ends_line(self) -> str: + return ENTER def end_family(self, level: int) -> str: return "" @@ -537,7 +537,7 @@ class CommonFormatter: ) -> list: """Collect string for the first column""" multi, properties = self.property_to_string( - informations, calculated_properties, modified_attributes + informations, calculated_properties, modified_attributes, ) first_col = [ self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)), @@ -881,6 +881,7 @@ class CommonFormatter: name: str, msg: str, submessage: str = "", + type_ = "variable", ) -> str: """Return something like Name: msg""" submessage, msg = self.message_to_string(msg, submessage) diff --git a/tests/results/test/00_6choice_variable_link2.gitlab.md b/tests/results/test/00_6choice_variable_link2.gitlab.md index b86073a08..efc8e18f6 100644 --- a/tests/results/test/00_6choice_variable_link2.gitlab.md +++ b/tests/results/test/00_6choice_variable_link2.gitlab.md @@ -6,7 +6,7 @@
family >>> [!note] Informations -
**family**
`standard` +**family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/00_6choice_variable_link2.md b/tests/results/test/00_6choice_variable_link2.md index e345b8cee..fc4e8841e 100644 --- a/tests/results/test/00_6choice_variable_link2.md +++ b/tests/results/test/00_6choice_variable_link2.md @@ -5,11 +5,9 @@ # family - - -| Informations | -|:------------| -| **family**
`standard` | +> πŸ›ˆ Informations +> **family** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_2family_redefine_calculation.gitlab.md b/tests/results/test/16_2family_redefine_calculation.gitlab.md index fc1c6a7ec..e567398d5 100644 --- a/tests/results/test/16_2family_redefine_calculation.gitlab.md +++ b/tests/results/test/16_2family_redefine_calculation.gitlab.md @@ -1,7 +1,7 @@
family >>> [!note] Informations -
**family**
`basic` *`disabled`*
**Disabled**: depends on a calculation +**family**
`basic` *`disabled`*
**Disabled**: depends on a calculation >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/16_2family_redefine_calculation.md b/tests/results/test/16_2family_redefine_calculation.md index 839d30bf2..d487e2123 100644 --- a/tests/results/test/16_2family_redefine_calculation.md +++ b/tests/results/test/16_2family_redefine_calculation.md @@ -1,10 +1,9 @@ # family - - -| Informations | -|:------------| -| **family**
`basic` *`disabled`*
**Disabled**: depends on a calculation | +> πŸ›ˆ Informations +> **family** +> `basic` *`disabled`* +> **Disabled**: depends on a calculation | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_3family_empty_at_ends.gitlab.md b/tests/results/test/16_3family_empty_at_ends.gitlab.md index 5569bb4de..282a24b8c 100644 --- a/tests/results/test/16_3family_empty_at_ends.gitlab.md +++ b/tests/results/test/16_3family_empty_at_ends.gitlab.md @@ -1,7 +1,7 @@
family >>> [!note] Informations -
**family**
`basic` +**family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/16_3family_empty_at_ends.md b/tests/results/test/16_3family_empty_at_ends.md index 531d4e09e..a48329c2c 100644 --- a/tests/results/test/16_3family_empty_at_ends.md +++ b/tests/results/test/16_3family_empty_at_ends.md @@ -1,10 +1,8 @@ # family - - -| Informations | -|:------------| -| **family**
`basic` | +> πŸ›ˆ Informations +> **family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_5redefine_family.gitlab.md b/tests/results/test/16_5redefine_family.gitlab.md index dfbfb0508..6f8d62b1c 100644 --- a/tests/results/test/16_5redefine_family.gitlab.md +++ b/tests/results/test/16_5redefine_family.gitlab.md @@ -1,7 +1,7 @@
New description >>> [!note] Informations -
**family**
`basic` +**family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/16_5redefine_family.md b/tests/results/test/16_5redefine_family.md index 027dc76f2..f4ea87343 100644 --- a/tests/results/test/16_5redefine_family.md +++ b/tests/results/test/16_5redefine_family.md @@ -1,10 +1,8 @@ # New description - - -| Informations | -|:------------| -| **family**
`basic` | +> πŸ›ˆ Informations +> **family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_5redefine_help.gitlab.md b/tests/results/test/16_5redefine_help.gitlab.md index c5e940225..41790bc57 100644 --- a/tests/results/test/16_5redefine_help.gitlab.md +++ b/tests/results/test/16_5redefine_help.gitlab.md @@ -1,7 +1,7 @@
A family >>> [!note] Informations -
**family**
Redefine help family ok.
`basic` +**family**
Redefine help family ok.
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| diff --git a/tests/results/test/16_5redefine_help.md b/tests/results/test/16_5redefine_help.md index 9575e383e..0e67c1b7e 100644 --- a/tests/results/test/16_5redefine_help.md +++ b/tests/results/test/16_5redefine_help.md @@ -1,10 +1,9 @@ # A family - - -| Informations | -|:------------| -| **family**
Redefine help family ok.
`basic` | +> πŸ›ˆ Informations +> **family** +> Redefine help family ok. +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_6exists_redefine_family.gitlab.md b/tests/results/test/16_6exists_redefine_family.gitlab.md index f5a69e52e..41f789977 100644 --- a/tests/results/test/16_6exists_redefine_family.gitlab.md +++ b/tests/results/test/16_6exists_redefine_family.gitlab.md @@ -1,7 +1,7 @@
New description >>> [!note] Informations -
**family1**
`basic` +**family1**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -12,7 +12,7 @@
A second family >>> [!note] Informations -
**family2**
`basic` +**family2**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test/16_6exists_redefine_family.md b/tests/results/test/16_6exists_redefine_family.md index e7e46d00a..6ccb8da75 100644 --- a/tests/results/test/16_6exists_redefine_family.md +++ b/tests/results/test/16_6exists_redefine_family.md @@ -1,10 +1,8 @@ # New description - - -| Informations | -|:------------| -| **family1**
`basic` | +> πŸ›ˆ Informations +> **family1** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +10,9 @@ # A second family - - -| Informations | -|:------------| -| **family2**
`basic` | +> πŸ›ˆ Informations +> **family2** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0family_append.gitlab.md b/tests/results/test/20_0family_append.gitlab.md index f5851facf..5215fb1d6 100644 --- a/tests/results/test/20_0family_append.gitlab.md +++ b/tests/results/test/20_0family_append.gitlab.md @@ -1,7 +1,7 @@
A family >>> [!note] Informations -
**family**
`basic` +**family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------| diff --git a/tests/results/test/20_0family_append.md b/tests/results/test/20_0family_append.md index ae91622d2..805e04da3 100644 --- a/tests/results/test/20_0family_append.md +++ b/tests/results/test/20_0family_append.md @@ -1,10 +1,8 @@ # A family - - -| Informations | -|:------------| -| **family**
`basic` | +> πŸ›ˆ Informations +> **family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family.gitlab.md b/tests/results/test/20_0multi_family.gitlab.md index 62dcd403f..e99b12f5f 100644 --- a/tests/results/test/20_0multi_family.gitlab.md +++ b/tests/results/test/20_0multi_family.gitlab.md @@ -1,12 +1,12 @@
A family >>> [!note] Informations -
**family**
`standard` +**family**
`standard` >>>
A sub family >>> [!note] Informations -
**family.subfamily**
`standard` +**family.subfamily**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/20_0multi_family.md b/tests/results/test/20_0multi_family.md index d8e041d85..df36701a9 100644 --- a/tests/results/test/20_0multi_family.md +++ b/tests/results/test/20_0multi_family.md @@ -1,18 +1,14 @@ # A family - - -| Informations | -|:------------| -| **family**
`standard` | +> πŸ›ˆ Informations +> **family** +> `standard` ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`standard` | +> πŸ›ˆ Informations +> **family.subfamily** +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family_basic.gitlab.md b/tests/results/test/20_0multi_family_basic.gitlab.md index a1aa60e70..3136ce3b4 100644 --- a/tests/results/test/20_0multi_family_basic.gitlab.md +++ b/tests/results/test/20_0multi_family_basic.gitlab.md @@ -1,12 +1,12 @@
A family >>> [!note] Informations -
**family**
`basic` +**family**
`basic` >>>
A sub family >>> [!note] Informations -
**family.subfamily**
`basic` +**family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/20_0multi_family_basic.md b/tests/results/test/20_0multi_family_basic.md index 387522e9e..e9ada4db8 100644 --- a/tests/results/test/20_0multi_family_basic.md +++ b/tests/results/test/20_0multi_family_basic.md @@ -1,18 +1,14 @@ # A family - - -| Informations | -|:------------| -| **family**
`basic` | +> πŸ›ˆ Informations +> **family** +> `basic` ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`basic` | +> πŸ›ˆ Informations +> **family.subfamily** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family_expert.gitlab.md b/tests/results/test/20_0multi_family_expert.gitlab.md index b81c0ba74..e56d55a8e 100644 --- a/tests/results/test/20_0multi_family_expert.gitlab.md +++ b/tests/results/test/20_0multi_family_expert.gitlab.md @@ -1,12 +1,12 @@
A family >>> [!note] Informations -
**family**
`advanced` +**family**
`advanced` >>>
A sub family >>> [!note] Informations -
**family.subfamily**
`advanced` +**family.subfamily**
`advanced` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/20_0multi_family_expert.md b/tests/results/test/20_0multi_family_expert.md index b8c4888ec..8e2c97933 100644 --- a/tests/results/test/20_0multi_family_expert.md +++ b/tests/results/test/20_0multi_family_expert.md @@ -1,18 +1,14 @@ # A family - - -| Informations | -|:------------| -| **family**
`advanced` | +> πŸ›ˆ Informations +> **family** +> `advanced` ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`advanced` | +> πŸ›ˆ Informations +> **family.subfamily** +> `advanced` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family_order.gitlab.md b/tests/results/test/20_0multi_family_order.gitlab.md index 2362ed023..fdc055d01 100644 --- a/tests/results/test/20_0multi_family_order.gitlab.md +++ b/tests/results/test/20_0multi_family_order.gitlab.md @@ -5,7 +5,7 @@
A family >>> [!note] Informations -
**family**
`basic` +**family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| @@ -14,7 +14,7 @@
A sub family >>> [!note] Informations -
**family.subfamily**
`basic` +**family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/20_0multi_family_order.md b/tests/results/test/20_0multi_family_order.md index 55993408b..f797cf4b8 100644 --- a/tests/results/test/20_0multi_family_order.md +++ b/tests/results/test/20_0multi_family_order.md @@ -4,11 +4,9 @@ # A family - - -| Informations | -|:------------| -| **family**
`basic` | +> πŸ›ˆ Informations +> **family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -16,11 +14,9 @@ ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`basic` | +> πŸ›ˆ Informations +> **family.subfamily** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md index 5330f8056..0e8e0d0b1 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md +++ b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md @@ -1,7 +1,7 @@
my_family >>> [!note] Informations -
**my_family**
`standard` +**my_family**
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| diff --git a/tests/results/test/20_2family_looks_like_dynamic.md b/tests/results/test/20_2family_looks_like_dynamic.md index c5012d287..5ee71cf78 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.md +++ b/tests/results/test/20_2family_looks_like_dynamic.md @@ -1,10 +1,8 @@ # my_family - - -| Informations | -|:------------| -| **my_family**
`standard` | +> πŸ›ˆ Informations +> **my_family** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_2family_looks_like_variable.gitlab.md b/tests/results/test/20_2family_looks_like_variable.gitlab.md index 8b8cb83bd..45aca0c90 100644 --- a/tests/results/test/20_2family_looks_like_variable.gitlab.md +++ b/tests/results/test/20_2family_looks_like_variable.gitlab.md @@ -1,7 +1,7 @@
my_family >>> [!note] Informations -
**my_family**
`standard` +**my_family**
`standard` >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| diff --git a/tests/results/test/20_2family_looks_like_variable.md b/tests/results/test/20_2family_looks_like_variable.md index 6085e5f11..302fbe3c5 100644 --- a/tests/results/test/20_2family_looks_like_variable.md +++ b/tests/results/test/20_2family_looks_like_variable.md @@ -1,10 +1,8 @@ # my_family - - -| Informations | -|:------------| -| **my_family**
`standard` | +> πŸ›ˆ Informations +> **my_family** +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_9default_information_parent.gitlab.md b/tests/results/test/20_9default_information_parent.gitlab.md index c66e05673..de4227f25 100644 --- a/tests/results/test/20_9default_information_parent.gitlab.md +++ b/tests/results/test/20_9default_information_parent.gitlab.md @@ -1,7 +1,7 @@
family >>> [!note] Informations -
**family**
`basic` +**family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_9default_information_parent.md b/tests/results/test/20_9default_information_parent.md index 6168737c6..78a7029cd 100644 --- a/tests/results/test/20_9default_information_parent.md +++ b/tests/results/test/20_9default_information_parent.md @@ -1,10 +1,8 @@ # family - - -| Informations | -|:------------| -| **family**
`basic` | +> πŸ›ˆ Informations +> **family** +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_9family_absolute.gitlab.md b/tests/results/test/20_9family_absolute.gitlab.md index cc28b8232..cc4d46b9d 100644 --- a/tests/results/test/20_9family_absolute.gitlab.md +++ b/tests/results/test/20_9family_absolute.gitlab.md @@ -5,7 +5,7 @@
A family >>> [!note] Informations -
**family**
`basic` +**family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| @@ -14,7 +14,7 @@
A sub family >>> [!note] Informations -
**family.subfamily**
`standard` +**family.subfamily**
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -27,7 +27,7 @@
A family >>> [!note] Informations -
**family2**
`standard` +**family2**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| @@ -37,7 +37,7 @@
A sub family >>> [!note] Informations -
**family2.subfamily**
`standard` +**family2.subfamily**
`standard` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_9family_absolute.md b/tests/results/test/20_9family_absolute.md index 27348f479..81a9d7ef1 100644 --- a/tests/results/test/20_9family_absolute.md +++ b/tests/results/test/20_9family_absolute.md @@ -4,11 +4,9 @@ # A family - - -| Informations | -|:------------| -| **family**
`basic` | +> πŸ›ˆ Informations +> **family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -16,11 +14,9 @@ ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`standard` | +> πŸ›ˆ Informations +> **family.subfamily** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -28,11 +24,9 @@ # A family - - -| Informations | -|:------------| -| **family2**
`standard` | +> πŸ›ˆ Informations +> **family2** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -41,11 +35,9 @@ ## A sub family - - -| Informations | -|:------------| -| **family2.subfamily**
`standard` | +> πŸ›ˆ Informations +> **family2.subfamily** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md index 548c3d74b..005cef19a 100644 --- a/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md +++ b/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md @@ -5,12 +5,12 @@
Possibly hidden family >>> [!note] Informations -
**family**
`basic` *`hidden`*
**Hidden**: if condition is yes +**family**
`basic` *`hidden`*
**Hidden**: if condition is yes >>>
subfamily >>> [!note] Informations -
**family.subfamily**
`basic` +**family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.md b/tests/results/test/24_0family_hidden_condition_sub_family.md index 40d118e62..cff3ff741 100644 --- a/tests/results/test/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test/24_0family_hidden_condition_sub_family.md @@ -4,19 +4,16 @@ # Possibly hidden family - - -| Informations | -|:------------| -| **family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> πŸ›ˆ Informations +> **family** +> `basic` *`hidden`* +> **Hidden**: if condition is yes ## subfamily - - -| Informations | -|:------------| -| **family.subfamily**
`basic` | +> πŸ›ˆ Informations +> **family.subfamily** +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 7e6baaebc..666445305 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 @@ -5,12 +5,12 @@
Possibly hidden family >>> [!note] Informations -
**family**
`standard` *`hidden`*
**Hidden**: when the variable "[`The variable use has condition`](#condition)" has the value "true" +**family**
`standard` *`hidden`*
**Hidden**: when the variable "[`The variable use has condition`](#condition)" has the value "true" >>>
A subfamily >>> [!note] Informations -
**family.subfamily**
`standard` +**family.subfamily**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| 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 436718699..df86f7ba4 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 @@ -4,19 +4,16 @@ # Possibly hidden family - - -| Informations | -|:------------| -| **family**
`standard` *`hidden`*
**Hidden**: when the variable "condition" has the value "true" | +> πŸ›ˆ Informations +> **family** +> `standard` *`hidden`* +> **Hidden**: when the variable "condition" has the value "true" ## A subfamily - - -| Informations | -|:------------| -| **family.subfamily**
`standard` | +> πŸ›ˆ Informations +> **family.subfamily** +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md index 3a7f13598..904fcddfe 100644 --- a/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md +++ b/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md @@ -5,12 +5,12 @@
Possibly hidden family >>> [!note] Informations -
**family**
`basic` *`hidden`*
**Hidden**: if condition is yes +**family**
`basic` *`hidden`*
**Hidden**: if condition is yes >>>
A subfamily >>> [!note] Informations -
**family.sub_family**
`basic` +**family.sub_family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.md b/tests/results/test/24_0family_hidden_param_condition_sub_family.md index 642719eea..e1061f79a 100644 --- a/tests/results/test/24_0family_hidden_param_condition_sub_family.md +++ b/tests/results/test/24_0family_hidden_param_condition_sub_family.md @@ -4,19 +4,16 @@ # Possibly hidden family - - -| Informations | -|:------------| -| **family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> πŸ›ˆ Informations +> **family** +> `basic` *`hidden`* +> **Hidden**: if condition is yes ## A subfamily - - -| Informations | -|:------------| -| **family.sub_family**
`basic` | +> πŸ›ˆ Informations +> **family.sub_family** +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_7validators_variable_optional.gitlab.md b/tests/results/test/24_7validators_variable_optional.gitlab.md index 0ef676bdd..73df24c11 100644 --- a/tests/results/test/24_7validators_variable_optional.gitlab.md +++ b/tests/results/test/24_7validators_variable_optional.gitlab.md @@ -1,7 +1,7 @@
A family >>> [!note] Informations -
**general**
`basic` +**general**
`basic` >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_7validators_variable_optional.md b/tests/results/test/24_7validators_variable_optional.md index 849dafcff..91876a1fb 100644 --- a/tests/results/test/24_7validators_variable_optional.md +++ b/tests/results/test/24_7validators_variable_optional.md @@ -1,10 +1,8 @@ # A family - - -| Informations | -|:------------| -| **general**
`basic` | +> πŸ›ˆ Informations +> **general** +> `basic` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership.gitlab.md b/tests/results/test/40_0leadership.gitlab.md index 9698ee424..f2c97dac5 100644 --- a/tests/results/test/40_0leadership.gitlab.md +++ b/tests/results/test/40_0leadership.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` +**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test/40_0leadership.md b/tests/results/test/40_0leadership.md index dbc8501d0..03ebfcb12 100644 --- a/tests/results/test/40_0leadership.md +++ b/tests/results/test/40_0leadership.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_diff_name.gitlab.md b/tests/results/test/40_0leadership_diff_name.gitlab.md index 77366ddfb..b8cde5e48 100644 --- a/tests/results/test/40_0leadership_diff_name.gitlab.md +++ b/tests/results/test/40_0leadership_diff_name.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`basic` +**leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test/40_0leadership_diff_name.md b/tests/results/test/40_0leadership_diff_name.md index 677c2769a..29706697b 100644 --- a/tests/results/test/40_0leadership_diff_name.md +++ b/tests/results/test/40_0leadership_diff_name.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md index ada56741d..79f8ce6a4 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md +++ b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` +**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_calculation.md b/tests/results/test/40_0leadership_follower_default_calculation.md index 8f8fa8f03..493c7c7bc 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.md +++ b/tests/results/test/40_0leadership_follower_default_calculation.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_value.gitlab.md b/tests/results/test/40_0leadership_follower_default_value.gitlab.md index fc61fd27b..5ac697959 100644 --- a/tests/results/test/40_0leadership_follower_default_value.gitlab.md +++ b/tests/results/test/40_0leadership_follower_default_value.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_value.md b/tests/results/test/40_0leadership_follower_default_value.md index e327e376d..09a2ebc13 100644 --- a/tests/results/test/40_0leadership_follower_default_value.md +++ b/tests/results/test/40_0leadership_follower_default_value.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_leader_follower.gitlab.md b/tests/results/test/40_0leadership_leader_follower.gitlab.md index 6e25fc643..76719e11e 100644 --- a/tests/results/test/40_0leadership_leader_follower.gitlab.md +++ b/tests/results/test/40_0leadership_leader_follower.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`standard` +**leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_leader_follower.md b/tests/results/test/40_0leadership_leader_follower.md index 28e2ff60c..45345fad6 100644 --- a/tests/results/test/40_0leadership_leader_follower.md +++ b/tests/results/test/40_0leadership_leader_follower.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leadership** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md index 905fcce13..33e306318 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md +++ b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md @@ -1,7 +1,7 @@
general >>> [!note] Informations -
**general**
`standard` +**general**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -12,12 +12,12 @@
general1 >>> [!note] Informations -
**general1**
`basic` +**general1**
`basic` >>>
Leader >>> [!note] Informations -
**general1.leader**
This family contains lists of variable blocks.
`basic` +**general1.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/40_0leadership_leader_not_multi.md b/tests/results/test/40_0leadership_leader_not_multi.md index bffa7b2da..48351743b 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.md +++ b/tests/results/test/40_0leadership_leader_not_multi.md @@ -1,10 +1,8 @@ # general - - -| Informations | -|:------------| -| **general**
`standard` | +> πŸ›ˆ Informations +> **general** +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +10,16 @@ # general1 - - -| Informations | -|:------------| -| **general1**
`basic` | +> πŸ›ˆ Informations +> **general1** +> `basic` ## Leader - - -| Informations | -|:------------| -| **general1.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **general1.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_reduce.gitlab.md b/tests/results/test/40_0leadership_reduce.gitlab.md index dc13be049..1d686abbb 100644 --- a/tests/results/test/40_0leadership_reduce.gitlab.md +++ b/tests/results/test/40_0leadership_reduce.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`basic` +**leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_reduce.md b/tests/results/test/40_0leadership_reduce.md index 68a1913be..8892e297e 100644 --- a/tests/results/test/40_0leadership_reduce.md +++ b/tests/results/test/40_0leadership_reduce.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_1leadership_append_follower.gitlab.md b/tests/results/test/40_1leadership_append_follower.gitlab.md index c7a5ebd8e..a24f55c0f 100644 --- a/tests/results/test/40_1leadership_append_follower.gitlab.md +++ b/tests/results/test/40_1leadership_append_follower.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` +**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------| diff --git a/tests/results/test/40_1leadership_append_follower.md b/tests/results/test/40_1leadership_append_follower.md index 45bd0f861..da74825d8 100644 --- a/tests/results/test/40_1leadership_append_follower.md +++ b/tests/results/test/40_1leadership_append_follower.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index.gitlab.md b/tests/results/test/40_2leadership_calculation_index.gitlab.md index b10c32d53..2fde9bc6a 100644 --- a/tests/results/test/40_2leadership_calculation_index.gitlab.md +++ b/tests/results/test/40_2leadership_calculation_index.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index.md b/tests/results/test/40_2leadership_calculation_index.md index 256be6e75..ecba40229 100644 --- a/tests/results/test/40_2leadership_calculation_index.md +++ b/tests/results/test/40_2leadership_calculation_index.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md index b10c32d53..2fde9bc6a 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md +++ b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index_2.md b/tests/results/test/40_2leadership_calculation_index_2.md index 256be6e75..ecba40229 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.md +++ b/tests/results/test/40_2leadership_calculation_index_2.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi.gitlab.md b/tests/results/test/40_6leadership_follower_multi.gitlab.md index a429e62a8..303952a92 100644 --- a/tests/results/test/40_6leadership_follower_multi.gitlab.md +++ b/tests/results/test/40_6leadership_follower_multi.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`basic` +**leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi.md b/tests/results/test/40_6leadership_follower_multi.md index 4469df34d..b901e25c0 100644 --- a/tests/results/test/40_6leadership_follower_multi.md +++ b/tests/results/test/40_6leadership_follower_multi.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md index 8cc55d456..c8d0459f7 100644 --- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`basic` +**leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test/40_6leadership_follower_multi_no_mandatory.md index 26a79c67f..3faef0c44 100644 --- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.md +++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 2352c77d8..e11e8baa5 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md +++ b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md @@ -5,7 +5,7 @@
A family >>> [!note] Informations -
**fam1**
`standard` +**fam1**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_8calculation_multi_variable_parent.md b/tests/results/test/40_8calculation_multi_variable_parent.md index a25e7c68a..8ad2052c8 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.md +++ b/tests/results/test/40_8calculation_multi_variable_parent.md @@ -4,11 +4,9 @@ # A family - - -| Informations | -|:------------| -| **fam1**
`standard` | +> πŸ›ˆ Informations +> **fam1** +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 895c2740f..8310c687e 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md +++ b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md @@ -1,7 +1,7 @@
First family >>> [!note] Informations -
**fam1**
`standard` +**fam1**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -12,7 +12,7 @@
Second family >>> [!note] Informations -
**fam2**
`standard` +**fam2**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.md b/tests/results/test/40_8calculation_multi_variable_parent2.md index 3c8ad2c89..f66c3f185 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test/40_8calculation_multi_variable_parent2.md @@ -1,10 +1,8 @@ # First family - - -| Informations | -|:------------| -| **fam1**
`standard` | +> πŸ›ˆ Informations +> **fam1** +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +10,9 @@ # Second family - - -| Informations | -|:------------| -| **fam2**
`standard` | +> πŸ›ˆ Informations +> **fam2** +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 dac85bd7b..89d23cffe 100644 --- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`standard` +**leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| 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 7344accc9..2dc27fcc9 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 @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leadership** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md index b4d20041e..d18db6ec0 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.md b/tests/results/test/40_9leadership-calculation-outside-follower-first.md index fe9d86dcf..e693481d5 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-first.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md index b4d20041e..d18db6ec0 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.md b/tests/results/test/40_9leadership-calculation-outside-follower-last.md index fe9d86dcf..e693481d5 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-last.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md index cb333803d..ac05517b7 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md @@ -1,7 +1,7 @@
leader >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------| 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 7dd6111b0..fd35d3bae 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 @@ -1,10 +1,9 @@ # leader - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md index 90e7069d5..c5d6a940e 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.md b/tests/results/test/40_9leadership-calculation-outside-follower.md index 531b6b239..3377fa149 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md index ddc9f3e55..c16670952 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.md b/tests/results/test/40_9leadership-calculation-outside-leader-first.md index e2ad89137..939c0825a 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-first.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md index ddc9f3e55..c16670952 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.md b/tests/results/test/40_9leadership-calculation-outside-leader-last.md index e2ad89137..939c0825a 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-last.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md index 911caaab6..8b285ff58 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.md b/tests/results/test/40_9leadership-calculation-outside-leader.md index 31081e4f1..77714bf3f 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-variable.gitlab.md b/tests/results/test/40_9leadership-calculation-variable.gitlab.md index b30fc1fbd..7c9704dda 100644 --- a/tests/results/test/40_9leadership-calculation-variable.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-variable.gitlab.md @@ -5,7 +5,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` +**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-variable.md b/tests/results/test/40_9leadership-calculation-variable.md index f415c28e6..ffcf20999 100644 --- a/tests/results/test/40_9leadership-calculation-variable.md +++ b/tests/results/test/40_9leadership-calculation-variable.md @@ -4,11 +4,10 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 705733397..8a3ad6030 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership_1**
This family contains lists of variable blocks.
`basic` +**leadership_1**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -13,7 +13,7 @@
A second leadership >>> [!note] Informations -
**leadership_2**
This family contains lists of variable blocks.
`standard` +**leadership_2**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| 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 4035706de..9e9746bf4 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.md +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership_1**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leadership_1** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,10 @@ # A second leadership - - -| Informations | -|:------------| -| **leadership_2**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leadership_2** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 89063cecb..8f970649c 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership_1**
This family contains lists of variable blocks.
`basic` +**leadership_1**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -13,7 +13,7 @@
A second leadership >>> [!note] Informations -
**leadership_2**
This family contains lists of variable blocks.
`standard` +**leadership_2**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------| 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 73d11e071..cf7f1c5ec 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 @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership_1**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leadership_1** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,10 @@ # A second leadership - - -| Informations | -|:------------| -| **leadership_2**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leadership_2** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/41_0choice_leader.gitlab.md b/tests/results/test/41_0choice_leader.gitlab.md index 99617eec9..91957f389 100644 --- a/tests/results/test/41_0choice_leader.gitlab.md +++ b/tests/results/test/41_0choice_leader.gitlab.md @@ -1,7 +1,7 @@
The leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` +**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/41_0choice_leader.md b/tests/results/test/41_0choice_leader.md index 6de121977..0684d02aa 100644 --- a/tests/results/test/41_0choice_leader.md +++ b/tests/results/test/41_0choice_leader.md @@ -1,10 +1,9 @@ # The leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md index 82f103870..352d88c82 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md +++ b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`standard` +**leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.md b/tests/results/test/44_4disabled_calcultion_follower_index.md index 39143f500..719aee5fe 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.md +++ b/tests/results/test/44_4disabled_calcultion_follower_index.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **leadership** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4leadership_mandatory.gitlab.md b/tests/results/test/44_4leadership_mandatory.gitlab.md index 37ba0e673..66d445a1d 100644 --- a/tests/results/test/44_4leadership_mandatory.gitlab.md +++ b/tests/results/test/44_4leadership_mandatory.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` +**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/44_4leadership_mandatory.md b/tests/results/test/44_4leadership_mandatory.md index 76209815e..d12e4bc7b 100644 --- a/tests/results/test/44_4leadership_mandatory.md +++ b/tests/results/test/44_4leadership_mandatory.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md index 43592e04f..38a99d46a 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md +++ b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` +**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/44_4leadership_mandatory_follower.md b/tests/results/test/44_4leadership_mandatory_follower.md index ddf27fea7..1060d72b4 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.md +++ b/tests/results/test/44_4leadership_mandatory_follower.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md index 2c6cf3e86..0800d699c 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md @@ -5,7 +5,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no +**leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.md b/tests/results/test/44_5leadership_leader_hidden_calculation.md index 209ec83cb..911132af6 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.md @@ -4,11 +4,11 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` *`hidden`* +> **Hidden**: if condition is no | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md index cfbf48163..9be6e4e0c 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md @@ -5,7 +5,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` +**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.md b/tests/results/test/44_6leadership_follower_disabled_calculation.md index e698793cc..16d76f9fa 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.md @@ -4,11 +4,10 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic.gitlab.md b/tests/results/test/60_0family_dynamic.gitlab.md index 3b9ce3e5b..c47b97ecc 100644 --- a/tests/results/test/60_0family_dynamic.gitlab.md +++ b/tests/results/test/60_0family_dynamic.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test/60_0family_dynamic.md b/tests/results/test/60_0family_dynamic.md index f60cbe5ae..4c5213510 100644 --- a/tests/results/test/60_0family_dynamic.md +++ b/tests/results/test/60_0family_dynamic.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 9ada911ef..2ffe67132 100644 --- a/tests/results/test/60_0family_dynamic_1_1.gitlab.md +++ b/tests/results/test/60_0family_dynamic_1_1.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test/60_0family_dynamic_1_1.md b/tests/results/test/60_0family_dynamic_1_1.md index 7653351af..cd7b2f657 100644 --- a/tests/results/test/60_0family_dynamic_1_1.md +++ b/tests/results/test/60_0family_dynamic_1_1.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 37432ed86..a03770f0b 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 98ee1aaf9..2f557fdf9 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.md +++ b/tests/results/test/60_0family_dynamic_1_1_empty.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_empty.gitlab.md b/tests/results/test/60_0family_dynamic_empty.gitlab.md index 299050a40..5857a4279 100644 --- a/tests/results/test/60_0family_dynamic_empty.gitlab.md +++ b/tests/results/test/60_0family_dynamic_empty.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test/60_0family_dynamic_empty.md b/tests/results/test/60_0family_dynamic_empty.md index 4c3c99a94..188e61eab 100644 --- a/tests/results/test/60_0family_dynamic_empty.md +++ b/tests/results/test/60_0family_dynamic_empty.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*example*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 01795f797..d21d23de5 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md +++ b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val_1***
**dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val_1***
**dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.md b/tests/results/test/60_0family_dynamic_forbidden_char.md index 172c00981..b35586e75 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.md +++ b/tests/results/test/60_0family_dynamic_forbidden_char.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val_1***
**dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val_1***
**dyn*val_2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 2105542ef..98f876018 100644 --- a/tests/results/test/60_0family_dynamic_no_description.gitlab.md +++ b/tests/results/test/60_0family_dynamic_no_description.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/60_0family_dynamic_no_description.md b/tests/results/test/60_0family_dynamic_no_description.md index 21673da11..ba247e508 100644 --- a/tests/results/test/60_0family_dynamic_no_description.md +++ b/tests/results/test/60_0family_dynamic_no_description.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 0af374b2f..db90338ef 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| 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 e16e57f84..3cbb571c8 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.md +++ b/tests/results/test/60_0family_dynamic_no_description_empty.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md index 79b65f2e0..fc8ce2cb9 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md +++ b/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md @@ -1,7 +1,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test/60_0family_dynamic_source_hidden.md b/tests/results/test/60_0family_dynamic_source_hidden.md index 9c81184b6..228d260f3 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.md +++ b/tests/results/test/60_0family_dynamic_source_hidden.md @@ -1,10 +1,10 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: (from an undocumented variable)
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_static.gitlab.md b/tests/results/test/60_0family_dynamic_static.gitlab.md index 402d14c14..ce2eb499b 100644 --- a/tests/results/test/60_0family_dynamic_static.gitlab.md +++ b/tests/results/test/60_0family_dynamic_static.gitlab.md @@ -1,7 +1,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_static.md b/tests/results/test/60_0family_dynamic_static.md index 8d0ba1c1e..911da2b78 100644 --- a/tests/results/test/60_0family_dynamic_static.md +++ b/tests/results/test/60_0family_dynamic_static.md @@ -1,10 +1,10 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_test.gitlab.md b/tests/results/test/60_0family_dynamic_test.gitlab.md index dc0379de3..5cdb66409 100644 --- a/tests/results/test/60_0family_dynamic_test.gitlab.md +++ b/tests/results/test/60_0family_dynamic_test.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test/60_0family_dynamic_test.md b/tests/results/test/60_0family_dynamic_test.md index 0fd043054..1298304cd 100644 --- a/tests/results/test/60_0family_dynamic_test.md +++ b/tests/results/test/60_0family_dynamic_test.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 c406de7aa..ad7e8cf25 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md +++ b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test/60_0family_dynamic_upper_char.md b/tests/results/test/60_0family_dynamic_upper_char.md index 732878620..cf032e85c 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.md +++ b/tests/results/test/60_0family_dynamic_upper_char.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 bed45852a..3238a3b76 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_variable_empty.md b/tests/results/test/60_0family_dynamic_variable_empty.md index 00f182080..f1002bacb 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.md +++ b/tests/results/test/60_0family_dynamic_variable_empty.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*example*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md index e375031bf..a5d5b45e2 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md @@ -1,7 +1,7 @@
A dynamic family >>> [!note] Informations -
**dyn*a***
**dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b +**dyn*a***
**dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_variable_optional.md b/tests/results/test/60_0family_dynamic_variable_optional.md index d0d8334e6..cb01d1859 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.md +++ b/tests/results/test/60_0family_dynamic_variable_optional.md @@ -1,10 +1,10 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*a***
**dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b | +> πŸ›ˆ Informations +> **dyn*a***
**dyn*b*** +> This family builds families dynamically. +> `standard` +> **Identifiers**:
- a
- b | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 00a83276a..a3a384189 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.md b/tests/results/test/60_0family_dynamic_variable_suffix.md index a8fac5282..0f1f9c1b3 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 5af6dd412..14baafe6f 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| 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 e7aa51020..2324a2e4a 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_mode.gitlab.md b/tests/results/test/60_0family_mode.gitlab.md index 368d8bf07..be513df0b 100644 --- a/tests/results/test/60_0family_mode.gitlab.md +++ b/tests/results/test/60_0family_mode.gitlab.md @@ -1,7 +1,7 @@
A family >>> [!note] Informations -
**family**
`basic` +**family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| diff --git a/tests/results/test/60_0family_mode.md b/tests/results/test/60_0family_mode.md index 3bd64f29f..a7687fb9c 100644 --- a/tests/results/test/60_0family_mode.md +++ b/tests/results/test/60_0family_mode.md @@ -1,10 +1,8 @@ # A family - - -| Informations | -|:------------| -| **family**
`basic` | +> πŸ›ˆ Informations +> **family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_1family_dynamic_jinja.gitlab.md b/tests/results/test/60_1family_dynamic_jinja.gitlab.md index ebf813d1f..dc65a29f6 100644 --- a/tests/results/test/60_1family_dynamic_jinja.gitlab.md +++ b/tests/results/test/60_1family_dynamic_jinja.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*1***
**dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value +**dyn*1***
**dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test/60_1family_dynamic_jinja.md b/tests/results/test/60_1family_dynamic_jinja.md index 114866400..3836b77dc 100644 --- a/tests/results/test/60_1family_dynamic_jinja.md +++ b/tests/results/test/60_1family_dynamic_jinja.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*1***
**dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value | +> πŸ›ˆ Informations +> **dyn*1***
**dyn*2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: index of suffix value | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 23ab579eb..7efa769ae 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 @@ -5,12 +5,12 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" >>>
A family >>> [!note] Informations -
**dyn*val1*.family**
**dyn*val2*.family**
`basic` +**dyn*val1*.family**
**dyn*val2*.family**
`basic` >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| 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 4cac6db43..fd4bb6b1a 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 @@ -4,19 +4,17 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var1" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var1" ## A family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`basic` | +> πŸ›ˆ Informations +> **dyn*val1*.family**
**dyn*val2*.family** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md index bb1173df8..013322972 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 @@ -5,12 +5,12 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" >>>
A family inside dynamic family >>> [!note] Informations -
**dyn*val1*.family**
**dyn*val2*.family**
`standard` +**dyn*val1*.family**
**dyn*val2*.family**
`standard` >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| 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 e125bc2ae..830b629b8 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 @@ -4,19 +4,17 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" ## A family inside dynamic family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`standard` | +> πŸ›ˆ Informations +> **dyn*val1*.family**
**dyn*val2*.family** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md index 8c3444ef8..a8c807f68 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 @@ -5,12 +5,12 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" >>>
A family inside dynamic family >>> [!note] Informations -
**dyn*val1*.family**
**dyn*val2*.family**
`standard` +**dyn*val1*.family**
**dyn*val2*.family**
`standard` >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| 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 b6b0ea5f1..21036ac7d 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 @@ -4,19 +4,17 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" ## A family inside dynamic family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`standard` | +> πŸ›ˆ Informations +> **dyn*val1*.family**
**dyn*val2*.family** +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md index 24996bbb7..d04398600 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 @@ -5,12 +5,12 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" >>>
A family >>> [!note] Informations -
**dyn*val1*.family**
**dyn*val2*.family**
`basic` +**dyn*val1*.family**
**dyn*val2*.family**
`basic` >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| 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 3097299eb..32af67d37 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 @@ -4,19 +4,17 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var1" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var1" ## A family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`basic` | +> πŸ›ˆ Informations +> **dyn*val1*.family**
**dyn*val2*.family** +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md index e381c841c..6aa4d7ffb 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md +++ b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#var1)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#var1)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_outside_calc.md b/tests/results/test/60_2family_dynamic_outside_calc.md index cd3271f20..831fe042f 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.md +++ b/tests/results/test/60_2family_dynamic_outside_calc.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var1" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md index c21efa356..026bc9b5d 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#var1)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#var1)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| 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 2ae343059..4940e2775 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.md +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var1" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md index d72926b39..9a5045de5 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.md b/tests/results/test/60_5family_dynamic_calc_suffix2.md index 6ecdaac90..fa2825d32 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 f55a57ba4..577d71276 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| 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 d01ece1f7..31b33c794 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md index b2abfadcc..d95fac293 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md @@ -1,7 +1,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md index f615074fd..90855529c 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md @@ -1,10 +1,10 @@ # dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- val2 | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 3ea3afa49..e491aa981 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| 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 d0ae74acd..13100249d 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 e26c16b4d..7b042a2c2 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| 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 0a4c05927..4542f2e9d 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 @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 e066ac703..477f400c3 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md +++ b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md @@ -5,7 +5,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_variable.md b/tests/results/test/60_5family_dynamic_calc_variable.md index 778df4a12..43fccb552 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.md +++ b/tests/results/test/60_5family_dynamic_calc_variable.md @@ -4,11 +4,11 @@ # dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var1" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 75683bafd..71dc5c472 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 @@ -1,7 +1,7 @@
A dynamic famify for *val1* or A dynamic famify for *val2* >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d6337b832..8732920c4 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.md +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.md @@ -1,10 +1,10 @@ # A dynamic famify for *val1* or A dynamic famify for *val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- val2 | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 a3dd67a2a..099820ea5 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 @@ -1,7 +1,7 @@
A dynamic famify for *val1* or A dynamic famify for *val2* >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 8a0030177..da0e9d942 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 @@ -1,10 +1,10 @@ # A dynamic famify for *val1* or A dynamic famify for *val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md index 299fcaca2..e73e4564e 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 @@ -5,7 +5,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 c11474bcc..3bdb0352f 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.md @@ -4,11 +4,11 @@ # dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var1" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md index 8efbbc80a..bd75b38de 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md @@ -1,7 +1,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -10,7 +10,7 @@
A family >>> [!note] Informations -
**dyn*val1*.family**
**dyn*val2*.family**
`standard` +**dyn*val1*.family**
**dyn*val2*.family**
`standard` >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.md b/tests/results/test/60_5family_dynamic_hidden_suffix.md index 4ba998d40..43e945ec0 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.md @@ -1,10 +1,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `standard` *`hidden`* +> **Hidden**: if suffix == 'val2' +> **Identifiers**:
- val1
- val2 | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +13,9 @@ ## A family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`standard` | +> πŸ›ˆ Informations +> **dyn*val1*.family**
**dyn*val2*.family** +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 006843495..265813e70 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| 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 bb3dd4d10..b8ba4d266 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.md +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn_*val1***
**dyn_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md index 283d83ee8..e4a82cad6 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 @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`Asuffix variable`](#var)" +**dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`Asuffix variable`](#var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| 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 48a971295..59413e787 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 @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn_*val1***
**dyn_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_6family_dynamic_leadership.gitlab.md b/tests/results/test/60_6family_dynamic_leadership.gitlab.md index c3a09949c..31a8bd6ae 100644 --- a/tests/results/test/60_6family_dynamic_leadership.gitlab.md +++ b/tests/results/test/60_6family_dynamic_leadership.gitlab.md @@ -5,12 +5,12 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>>
A leadership >>> [!note] Informations -
**dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` +**dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/60_6family_dynamic_leadership.md b/tests/results/test/60_6family_dynamic_leadership.md index 7cac59e2d..2637d21b1 100644 --- a/tests/results/test/60_6family_dynamic_leadership.md +++ b/tests/results/test/60_6family_dynamic_leadership.md @@ -4,19 +4,18 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" ## A leadership - - -| Informations | -|:------------| -| **dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **dyn*val1*.leadership**
**dyn*val2*.leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 dfe0eaee2..b6a2f479e 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md +++ b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md @@ -5,12 +5,12 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" >>>
A leadership >>> [!note] Informations -
**dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` +**dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.md b/tests/results/test/60_6family_dynamic_leadership_empty.md index 33ee81b07..9c7758f88 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test/60_6family_dynamic_leadership_empty.md @@ -4,19 +4,18 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "var" ## A leadership - - -| Informations | -|:------------| -| **dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **dyn*val1*.leadership**
**dyn*val2*.leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 e26a8fc4b..945f4d316 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md +++ b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md @@ -5,7 +5,7 @@
A dynamic family >>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#var)" +**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test/60_9family_dynamic_calc_both.md b/tests/results/test/60_9family_dynamic_calc_both.md index d6d6df307..9462bcb44 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.md +++ b/tests/results/test/60_9family_dynamic_calc_both.md @@ -4,11 +4,11 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "var" | +> πŸ›ˆ Informations +> **dyn*val1***
**dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- the value of the variable "var" | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/68_0family_leadership_mode.gitlab.md b/tests/results/test/68_0family_leadership_mode.gitlab.md index a555e1855..40cc8d452 100644 --- a/tests/results/test/68_0family_leadership_mode.gitlab.md +++ b/tests/results/test/68_0family_leadership_mode.gitlab.md @@ -1,7 +1,7 @@
A leadership >>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` +**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/68_0family_leadership_mode.md b/tests/results/test/68_0family_leadership_mode.md index 870946735..a540347ed 100644 --- a/tests/results/test/68_0family_leadership_mode.md +++ b/tests/results/test/68_0family_leadership_mode.md @@ -1,10 +1,9 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                        | Description                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_0version_underscore.gitlab.md b/tests/results/test_namespace/00_0version_underscore.gitlab.md index 6ccdbbd60..6c580c0cb 100644 --- a/tests/results/test_namespace/00_0version_underscore.gitlab.md +++ b/tests/results/test_namespace/00_0version_underscore.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/00_0version_underscore.md b/tests/results/test_namespace/00_0version_underscore.md index 4e75da024..3db54c5d2 100644 --- a/tests/results/test_namespace/00_0version_underscore.md +++ b/tests/results/test_namespace/00_0version_underscore.md @@ -1,9 +1,9 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> **πŸ›ˆ Informations** +> +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/00_1empty_variable.gitlab.md b/tests/results/test_namespace/00_1empty_variable.gitlab.md index 1fe2b2c32..363c536f5 100644 --- a/tests/results/test_namespace/00_1empty_variable.gitlab.md +++ b/tests/results/test_namespace/00_1empty_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/00_1empty_variable.md b/tests/results/test_namespace/00_1empty_variable.md index 0476d23b0..2ee84f495 100644 --- a/tests/results/test_namespace/00_1empty_variable.md +++ b/tests/results/test_namespace/00_1empty_variable.md @@ -2,8 +2,8 @@ > **πŸ›ˆ Informations** > -> **rougail** -> `basic` +> **rougail**\ +> `basic`\ | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/00_2default_calculated.gitlab.md b/tests/results/test_namespace/00_2default_calculated.gitlab.md index 94f65f0ae..eba9bcc3a 100644 --- a/tests/results/test_namespace/00_2default_calculated.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated.md b/tests/results/test_namespace/00_2default_calculated.md index 8d3f5cddf..9e31abcd9 100644 --- a/tests/results/test_namespace/00_2default_calculated.md +++ b/tests/results/test_namespace/00_2default_calculated.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 bfbd93040..ab4ce14dd 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated_multi.md b/tests/results/test_namespace/00_2default_calculated_multi.md index fb419116c..4338f1717 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.md +++ b/tests/results/test_namespace/00_2default_calculated_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md index 7ff43e105..cf56281f5 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.md b/tests/results/test_namespace/00_2default_calculated_params_permissive.md index e5540bb81..6b6dfa7b6 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.md +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | 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 5ff9dcb10..106aa9fb0 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated_variable.md b/tests/results/test_namespace/00_2default_calculated_variable.md index 55db42715..bc96b002d 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.md +++ b/tests/results/test_namespace/00_2default_calculated_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                           | Description                                                                                                                        | diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md index 7e8c8f88b..1528f8b15 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.md b/tests/results/test_namespace/00_2default_calculated_variable_description.md index 466ab19d7..d1c87f78d 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md index a0fd540da..4f92e91db 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.md index 5d4f8c9c7..2b54f3063 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | 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 5ad985a0b..b8865c838 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------| 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 9e7575c55..3e1a96b67 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                           | Description                                                                                                                        | diff --git a/tests/results/test_namespace/00_4load_subfolder.gitlab.md b/tests/results/test_namespace/00_4load_subfolder.gitlab.md index f41d68075..0d77490ca 100644 --- a/tests/results/test_namespace/00_4load_subfolder.gitlab.md +++ b/tests/results/test_namespace/00_4load_subfolder.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/00_4load_subfolder.md b/tests/results/test_namespace/00_4load_subfolder.md index 3a6ff75ae..9aa93bea4 100644 --- a/tests/results/test_namespace/00_4load_subfolder.md +++ b/tests/results/test_namespace/00_4load_subfolder.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/00_5load_notype.gitlab.md b/tests/results/test_namespace/00_5load_notype.gitlab.md index 436a52da9..cf7f5f3e8 100644 --- a/tests/results/test_namespace/00_5load_notype.gitlab.md +++ b/tests/results/test_namespace/00_5load_notype.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| diff --git a/tests/results/test_namespace/00_5load_notype.md b/tests/results/test_namespace/00_5load_notype.md index 791713091..fd1decba3 100644 --- a/tests/results/test_namespace/00_5load_notype.md +++ b/tests/results/test_namespace/00_5load_notype.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6boolean.gitlab.md b/tests/results/test_namespace/00_6boolean.gitlab.md index 024458874..b19d61a7d 100644 --- a/tests/results/test_namespace/00_6boolean.gitlab.md +++ b/tests/results/test_namespace/00_6boolean.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------| diff --git a/tests/results/test_namespace/00_6boolean.md b/tests/results/test_namespace/00_6boolean.md index 6b854d92f..39ed6e423 100644 --- a/tests/results/test_namespace/00_6boolean.md +++ b/tests/results/test_namespace/00_6boolean.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md index c2c4f02b0..9b6e40874 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------| diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.md b/tests/results/test_namespace/00_6boolean_no_mandatory.md index 529fc8508..87cea981d 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.md +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                        | Description                                                                                     | diff --git a/tests/results/test_namespace/00_6choice.gitlab.md b/tests/results/test_namespace/00_6choice.gitlab.md index 5073ed886..8126778c8 100644 --- a/tests/results/test_namespace/00_6choice.gitlab.md +++ b/tests/results/test_namespace/00_6choice.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice.md b/tests/results/test_namespace/00_6choice.md index 5a11dba9f..ba73bda5b 100644 --- a/tests/results/test_namespace/00_6choice.md +++ b/tests/results/test_namespace/00_6choice.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6choice_calculation.gitlab.md b/tests/results/test_namespace/00_6choice_calculation.gitlab.md index 2a9b08882..467b86cdb 100644 --- a/tests/results/test_namespace/00_6choice_calculation.gitlab.md +++ b/tests/results/test_namespace/00_6choice_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_calculation.md b/tests/results/test_namespace/00_6choice_calculation.md index 83f847641..f3488aafa 100644 --- a/tests/results/test_namespace/00_6choice_calculation.md +++ b/tests/results/test_namespace/00_6choice_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6choice_link.gitlab.md b/tests/results/test_namespace/00_6choice_link.gitlab.md index 3408af655..a64aee735 100644 --- a/tests/results/test_namespace/00_6choice_link.gitlab.md +++ b/tests/results/test_namespace/00_6choice_link.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_link.md b/tests/results/test_namespace/00_6choice_link.md index 985305be9..b80094e6b 100644 --- a/tests/results/test_namespace/00_6choice_link.md +++ b/tests/results/test_namespace/00_6choice_link.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6choice_variable.gitlab.md b/tests/results/test_namespace/00_6choice_variable.gitlab.md index 0700f0ab6..4af1a96fd 100644 --- a/tests/results/test_namespace/00_6choice_variable.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_variable.md b/tests/results/test_namespace/00_6choice_variable.md index cd77f791f..4a5622079 100644 --- a/tests/results/test_namespace/00_6choice_variable.md +++ b/tests/results/test_namespace/00_6choice_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 36286db0f..6ee7ce262 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_variable_link.md b/tests/results/test_namespace/00_6choice_variable_link.md index 75cc504fb..28fa38498 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.md +++ b/tests/results/test_namespace/00_6choice_variable_link.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 71f823296..4567c70ba 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------| @@ -13,7 +11,7 @@
family >>> [!note] Informations -
**rougail.family**
`standard` +**rougail.family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_variable_link2.md b/tests/results/test_namespace/00_6choice_variable_link2.md index 77e9e599c..bb7e7b4bf 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.md +++ b/tests/results/test_namespace/00_6choice_variable_link2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -13,11 +12,9 @@ ## family - - -| Informations | -|:------------| -| **rougail.family**
`standard` | +> πŸ›ˆ Informations +> **rougail.family** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6custom.gitlab.md b/tests/results/test_namespace/00_6custom.gitlab.md index 88b02883d..263a2f1c2 100644 --- a/tests/results/test_namespace/00_6custom.gitlab.md +++ b/tests/results/test_namespace/00_6custom.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| diff --git a/tests/results/test_namespace/00_6custom.md b/tests/results/test_namespace/00_6custom.md index 1b7f8b9ba..a680b37a9 100644 --- a/tests/results/test_namespace/00_6custom.md +++ b/tests/results/test_namespace/00_6custom.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6domainname.gitlab.md b/tests/results/test_namespace/00_6domainname.gitlab.md index e7244189a..4fcfd31c7 100644 --- a/tests/results/test_namespace/00_6domainname.gitlab.md +++ b/tests/results/test_namespace/00_6domainname.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6domainname.md b/tests/results/test_namespace/00_6domainname.md index 3a4fe8ba0..d0e67fd02 100644 --- a/tests/results/test_namespace/00_6domainname.md +++ b/tests/results/test_namespace/00_6domainname.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                       | Description                                                                                                    | diff --git a/tests/results/test_namespace/00_6domainname_params.gitlab.md b/tests/results/test_namespace/00_6domainname_params.gitlab.md index b43a8274a..fd7b2ceda 100644 --- a/tests/results/test_namespace/00_6domainname_params.gitlab.md +++ b/tests/results/test_namespace/00_6domainname_params.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6domainname_params.md b/tests/results/test_namespace/00_6domainname_params.md index 808448ff5..499b8ba38 100644 --- a/tests/results/test_namespace/00_6domainname_params.md +++ b/tests/results/test_namespace/00_6domainname_params.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                       | Description                                                                                                    | diff --git a/tests/results/test_namespace/00_6float.gitlab.md b/tests/results/test_namespace/00_6float.gitlab.md index 4049d730c..cf1f1dad5 100644 --- a/tests/results/test_namespace/00_6float.gitlab.md +++ b/tests/results/test_namespace/00_6float.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------| diff --git a/tests/results/test_namespace/00_6float.md b/tests/results/test_namespace/00_6float.md index 44caf69b6..628aaebb5 100644 --- a/tests/results/test_namespace/00_6float.md +++ b/tests/results/test_namespace/00_6float.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                  | Description                                                                                               | diff --git a/tests/results/test_namespace/00_6integer.gitlab.md b/tests/results/test_namespace/00_6integer.gitlab.md index 378582990..9bc7586af 100644 --- a/tests/results/test_namespace/00_6integer.gitlab.md +++ b/tests/results/test_namespace/00_6integer.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/00_6integer.md b/tests/results/test_namespace/00_6integer.md index a27715439..d628895fe 100644 --- a/tests/results/test_namespace/00_6integer.md +++ b/tests/results/test_namespace/00_6integer.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | diff --git a/tests/results/test_namespace/00_6ip.gitlab.md b/tests/results/test_namespace/00_6ip.gitlab.md index df940bc2f..f37adee5f 100644 --- a/tests/results/test_namespace/00_6ip.gitlab.md +++ b/tests/results/test_namespace/00_6ip.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6ip.md b/tests/results/test_namespace/00_6ip.md index 45aacaf6e..26322b135 100644 --- a/tests/results/test_namespace/00_6ip.md +++ b/tests/results/test_namespace/00_6ip.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                 | Description                                                                                              | diff --git a/tests/results/test_namespace/00_6network.gitlab.md b/tests/results/test_namespace/00_6network.gitlab.md index 9f1811cd9..acbddac71 100644 --- a/tests/results/test_namespace/00_6network.gitlab.md +++ b/tests/results/test_namespace/00_6network.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6network.md b/tests/results/test_namespace/00_6network.md index 7a64eb103..730bfb3d1 100644 --- a/tests/results/test_namespace/00_6network.md +++ b/tests/results/test_namespace/00_6network.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                         | Description                                                                                                      | diff --git a/tests/results/test_namespace/00_6number.gitlab.md b/tests/results/test_namespace/00_6number.gitlab.md index 378582990..9bc7586af 100644 --- a/tests/results/test_namespace/00_6number.gitlab.md +++ b/tests/results/test_namespace/00_6number.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/00_6number.md b/tests/results/test_namespace/00_6number.md index a27715439..d628895fe 100644 --- a/tests/results/test_namespace/00_6number.md +++ b/tests/results/test_namespace/00_6number.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | diff --git a/tests/results/test_namespace/00_6port.gitlab.md b/tests/results/test_namespace/00_6port.gitlab.md index 73f94d341..9d0e14077 100644 --- a/tests/results/test_namespace/00_6port.gitlab.md +++ b/tests/results/test_namespace/00_6port.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6port.md b/tests/results/test_namespace/00_6port.md index a9c506a5c..d00e44743 100644 --- a/tests/results/test_namespace/00_6port.md +++ b/tests/results/test_namespace/00_6port.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                 | Description                                                                                              | diff --git a/tests/results/test_namespace/00_6regexp.gitlab.md b/tests/results/test_namespace/00_6regexp.gitlab.md index ee806750a..c3481cb10 100644 --- a/tests/results/test_namespace/00_6regexp.gitlab.md +++ b/tests/results/test_namespace/00_6regexp.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6regexp.md b/tests/results/test_namespace/00_6regexp.md index 6b2499df1..efcc9674a 100644 --- a/tests/results/test_namespace/00_6regexp.md +++ b/tests/results/test_namespace/00_6regexp.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6regexp_link.gitlab.md b/tests/results/test_namespace/00_6regexp_link.gitlab.md index 8e954a217..c2b285450 100644 --- a/tests/results/test_namespace/00_6regexp_link.gitlab.md +++ b/tests/results/test_namespace/00_6regexp_link.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6regexp_link.md b/tests/results/test_namespace/00_6regexp_link.md index e2276d047..53e701bc8 100644 --- a/tests/results/test_namespace/00_6regexp_link.md +++ b/tests/results/test_namespace/00_6regexp_link.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6secret.gitlab.md b/tests/results/test_namespace/00_6secret.gitlab.md index 6b7b9015d..0fe36364c 100644 --- a/tests/results/test_namespace/00_6secret.gitlab.md +++ b/tests/results/test_namespace/00_6secret.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| diff --git a/tests/results/test_namespace/00_6secret.md b/tests/results/test_namespace/00_6secret.md index 7d4a637a5..cc79ac5cc 100644 --- a/tests/results/test_namespace/00_6secret.md +++ b/tests/results/test_namespace/00_6secret.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6secret_param.gitlab.md b/tests/results/test_namespace/00_6secret_param.gitlab.md index a1814e1b6..d6f9ee737 100644 --- a/tests/results/test_namespace/00_6secret_param.gitlab.md +++ b/tests/results/test_namespace/00_6secret_param.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6secret_param.md b/tests/results/test_namespace/00_6secret_param.md index 6c5a87528..3a62026ac 100644 --- a/tests/results/test_namespace/00_6secret_param.md +++ b/tests/results/test_namespace/00_6secret_param.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_6string.gitlab.md b/tests/results/test_namespace/00_6string.gitlab.md index c4541b95a..d539a5671 100644 --- a/tests/results/test_namespace/00_6string.gitlab.md +++ b/tests/results/test_namespace/00_6string.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| diff --git a/tests/results/test_namespace/00_6string.md b/tests/results/test_namespace/00_6string.md index 10803611a..c670cf3c6 100644 --- a/tests/results/test_namespace/00_6string.md +++ b/tests/results/test_namespace/00_6string.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_7choice_quote.gitlab.md b/tests/results/test_namespace/00_7choice_quote.gitlab.md index be103f2fc..19a9ac2b8 100644 --- a/tests/results/test_namespace/00_7choice_quote.gitlab.md +++ b/tests/results/test_namespace/00_7choice_quote.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7choice_quote.md b/tests/results/test_namespace/00_7choice_quote.md index c45d94e0f..af1710f8e 100644 --- a/tests/results/test_namespace/00_7choice_quote.md +++ b/tests/results/test_namespace/00_7choice_quote.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_7help.gitlab.md b/tests/results/test_namespace/00_7help.gitlab.md index bf3f2c700..a35db28df 100644 --- a/tests/results/test_namespace/00_7help.gitlab.md +++ b/tests/results/test_namespace/00_7help.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7help.md b/tests/results/test_namespace/00_7help.md index 771c862b7..e1ac59323 100644 --- a/tests/results/test_namespace/00_7help.md +++ b/tests/results/test_namespace/00_7help.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/00_7help_quote.gitlab.md b/tests/results/test_namespace/00_7help_quote.gitlab.md index 011c47b14..f09def6f1 100644 --- a/tests/results/test_namespace/00_7help_quote.gitlab.md +++ b/tests/results/test_namespace/00_7help_quote.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------| diff --git a/tests/results/test_namespace/00_7help_quote.md b/tests/results/test_namespace/00_7help_quote.md index f78b4b6c3..c3819a9fc 100644 --- a/tests/results/test_namespace/00_7help_quote.md +++ b/tests/results/test_namespace/00_7help_quote.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/00_7help_sup.gitlab.md b/tests/results/test_namespace/00_7help_sup.gitlab.md index 4cbbab3d3..9382a9493 100644 --- a/tests/results/test_namespace/00_7help_sup.gitlab.md +++ b/tests/results/test_namespace/00_7help_sup.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7help_sup.md b/tests/results/test_namespace/00_7help_sup.md index b303cb850..667d08cda 100644 --- a/tests/results/test_namespace/00_7help_sup.md +++ b/tests/results/test_namespace/00_7help_sup.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/00_7value_doublequote.gitlab.md b/tests/results/test_namespace/00_7value_doublequote.gitlab.md index c5c662052..390f5d695 100644 --- a/tests/results/test_namespace/00_7value_doublequote.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| diff --git a/tests/results/test_namespace/00_7value_doublequote.md b/tests/results/test_namespace/00_7value_doublequote.md index 9e3d66f82..7c6d8d60e 100644 --- a/tests/results/test_namespace/00_7value_doublequote.md +++ b/tests/results/test_namespace/00_7value_doublequote.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md index 00c528b4b..8e3065023 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| diff --git a/tests/results/test_namespace/00_7value_doublequote2.md b/tests/results/test_namespace/00_7value_doublequote2.md index c5e863b42..7ec273856 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.md +++ b/tests/results/test_namespace/00_7value_doublequote2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md index 57e3dfe12..ad90c240c 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------| diff --git a/tests/results/test_namespace/00_7value_doublequote3.md b/tests/results/test_namespace/00_7value_doublequote3.md index 525245ee8..bce3c3ce8 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.md +++ b/tests/results/test_namespace/00_7value_doublequote3.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_7value_quote.gitlab.md b/tests/results/test_namespace/00_7value_quote.gitlab.md index 207a6bb18..e3573ed17 100644 --- a/tests/results/test_namespace/00_7value_quote.gitlab.md +++ b/tests/results/test_namespace/00_7value_quote.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| diff --git a/tests/results/test_namespace/00_7value_quote.md b/tests/results/test_namespace/00_7value_quote.md index d21224077..160f1f9e6 100644 --- a/tests/results/test_namespace/00_7value_quote.md +++ b/tests/results/test_namespace/00_7value_quote.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_8calculation_information.gitlab.md b/tests/results/test_namespace/00_8calculation_information.gitlab.md index dd0e87de6..749cf3113 100644 --- a/tests/results/test_namespace/00_8calculation_information.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_information.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_8calculation_information.md b/tests/results/test_namespace/00_8calculation_information.md index ba42197ac..dc182650b 100644 --- a/tests/results/test_namespace/00_8calculation_information.md +++ b/tests/results/test_namespace/00_8calculation_information.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md index 451b9cb76..a4f70ea1e 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------| diff --git a/tests/results/test_namespace/00_8calculation_namespace.md b/tests/results/test_namespace/00_8calculation_namespace.md index c73ec670a..3ff9b1475 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.md +++ b/tests/results/test_namespace/00_8calculation_namespace.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                       | Description                                                                                    | diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md index 2c128eeec..3023925ea 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.md b/tests/results/test_namespace/00_8calculation_param_namespace.md index 15ff9da55..935c6f319 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.md +++ b/tests/results/test_namespace/00_8calculation_param_namespace.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                       | Description                                                                                    | diff --git a/tests/results/test_namespace/00_8test.gitlab.md b/tests/results/test_namespace/00_8test.gitlab.md index 095a90f36..2a27fd435 100644 --- a/tests/results/test_namespace/00_8test.gitlab.md +++ b/tests/results/test_namespace/00_8test.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_8test.md b/tests/results/test_namespace/00_8test.md index d762774d1..57f6ce8e3 100644 --- a/tests/results/test_namespace/00_8test.md +++ b/tests/results/test_namespace/00_8test.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | diff --git a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md index 3e82c95ed..db305ae8f 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md +++ b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9choice_variable_multi.md b/tests/results/test_namespace/00_9choice_variable_multi.md index efca86c55..4df3f0a57 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.md +++ b/tests/results/test_namespace/00_9choice_variable_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | diff --git a/tests/results/test_namespace/00_9choice_variables.gitlab.md b/tests/results/test_namespace/00_9choice_variables.gitlab.md index 68ed274f4..818a17c66 100644 --- a/tests/results/test_namespace/00_9choice_variables.gitlab.md +++ b/tests/results/test_namespace/00_9choice_variables.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9choice_variables.md b/tests/results/test_namespace/00_9choice_variables.md index bbac48ceb..764e10204 100644 --- a/tests/results/test_namespace/00_9choice_variables.md +++ b/tests/results/test_namespace/00_9choice_variables.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_9default_calculation.gitlab.md b/tests/results/test_namespace/00_9default_calculation.gitlab.md index e0e7af02c..773cacee2 100644 --- a/tests/results/test_namespace/00_9default_calculation.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_calculation.md b/tests/results/test_namespace/00_9default_calculation.md index da6a7cd4e..3016c2770 100644 --- a/tests/results/test_namespace/00_9default_calculation.md +++ b/tests/results/test_namespace/00_9default_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md index 6f198f7aa..1dcfe1eb0 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_calculation_information.md b/tests/results/test_namespace/00_9default_calculation_information.md index 977e35b94..0f991e8a2 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.md +++ b/tests/results/test_namespace/00_9default_calculation_information.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md index add33b6c9..e663fbf69 100644 --- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.md b/tests/results/test_namespace/00_9default_calculation_information_other_variable.md index 276ddae42..09ae01021 100644 --- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.md +++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | 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 0834956c8..d071645bc 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------| 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 44c3c4462..6c4166071 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 0834956c8..d071645bc 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------| 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 44c3c4462..6c4166071 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 0834956c8..d071645bc 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------| 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 44c3c4462..6c4166071 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md index 602b1b3e6..ab9b3c467 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/00_9default_calculation_optional.md b/tests/results/test_namespace/00_9default_calculation_optional.md index e474e0313..2240a48c7 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_optional.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 d0246f38c..41f540bc0 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------| 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 442cbe109..e277c51da 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.md +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md index c8e2c2344..a61839827 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.md b/tests/results/test_namespace/00_9default_calculation_param_optional.md index cfd9b65e0..222ec84ca 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | 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 21d421873..e62b40954 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md +++ b/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------| 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 ae5f29b3a..76f6698e6 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.md +++ b/tests/results/test_namespace/00_9default_information_other_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | 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 21d421873..e62b40954 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md +++ b/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------| 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 ae5f29b3a..76f6698e6 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.md +++ b/tests/results/test_namespace/00_9default_information_other_variable2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_9default_integer.gitlab.md b/tests/results/test_namespace/00_9default_integer.gitlab.md index 3e4ada265..3b9299074 100644 --- a/tests/results/test_namespace/00_9default_integer.gitlab.md +++ b/tests/results/test_namespace/00_9default_integer.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_integer.md b/tests/results/test_namespace/00_9default_integer.md index 0c2fbf698..7c6950b84 100644 --- a/tests/results/test_namespace/00_9default_integer.md +++ b/tests/results/test_namespace/00_9default_integer.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_9default_number.gitlab.md b/tests/results/test_namespace/00_9default_number.gitlab.md index 3e4ada265..3b9299074 100644 --- a/tests/results/test_namespace/00_9default_number.gitlab.md +++ b/tests/results/test_namespace/00_9default_number.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_number.md b/tests/results/test_namespace/00_9default_number.md index 0c2fbf698..7c6950b84 100644 --- a/tests/results/test_namespace/00_9default_number.md +++ b/tests/results/test_namespace/00_9default_number.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_9extra.gitlab.md b/tests/results/test_namespace/00_9extra.gitlab.md index 36b552b3b..bb7057ab6 100644 --- a/tests/results/test_namespace/00_9extra.gitlab.md +++ b/tests/results/test_namespace/00_9extra.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| @@ -14,9 +12,7 @@
Extra >>> [!note] Informations -**extra**
`standard` - - +**extra**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------| diff --git a/tests/results/test_namespace/00_9extra.md b/tests/results/test_namespace/00_9extra.md index d37078fdf..f07941d37 100644 --- a/tests/results/test_namespace/00_9extra.md +++ b/tests/results/test_namespace/00_9extra.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | @@ -12,10 +11,9 @@ # Variables for "Extra" -**extra** - -`standard` - +> πŸ›ˆ Informations +> **extra** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_9extra_calculation.gitlab.md b/tests/results/test_namespace/00_9extra_calculation.gitlab.md index 265681906..55313a1bf 100644 --- a/tests/results/test_namespace/00_9extra_calculation.gitlab.md +++ b/tests/results/test_namespace/00_9extra_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------| @@ -14,9 +12,7 @@
Extra >>> [!note] Informations -**extra**
`standard` - - +**extra**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9extra_calculation.md b/tests/results/test_namespace/00_9extra_calculation.md index af0c7290f..1a96f7b07 100644 --- a/tests/results/test_namespace/00_9extra_calculation.md +++ b/tests/results/test_namespace/00_9extra_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | @@ -12,10 +11,9 @@ # Variables for "Extra" -**extra** - -`standard` - +> πŸ›ˆ Informations +> **extra** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/00_9extra_ouside.gitlab.md b/tests/results/test_namespace/00_9extra_ouside.gitlab.md index cd72d15a6..3a3406222 100644 --- a/tests/results/test_namespace/00_9extra_ouside.gitlab.md +++ b/tests/results/test_namespace/00_9extra_ouside.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------| @@ -14,9 +12,7 @@
Extra >>> [!note] Informations -**extra**
`standard` - - +**extra**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| diff --git a/tests/results/test_namespace/00_9extra_ouside.md b/tests/results/test_namespace/00_9extra_ouside.md index 81051589a..32cf74528 100644 --- a/tests/results/test_namespace/00_9extra_ouside.md +++ b/tests/results/test_namespace/00_9extra_ouside.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | @@ -12,10 +11,9 @@ # Variables for "Extra" -**extra** - -`standard` - +> πŸ›ˆ Informations +> **extra** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/01_6boolean_multi.gitlab.md b/tests/results/test_namespace/01_6boolean_multi.gitlab.md index 06c5897ba..ce17243b1 100644 --- a/tests/results/test_namespace/01_6boolean_multi.gitlab.md +++ b/tests/results/test_namespace/01_6boolean_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/01_6boolean_multi.md b/tests/results/test_namespace/01_6boolean_multi.md index 88fdf34b4..84a619a42 100644 --- a/tests/results/test_namespace/01_6boolean_multi.md +++ b/tests/results/test_namespace/01_6boolean_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | diff --git a/tests/results/test_namespace/01_6custom_multi.gitlab.md b/tests/results/test_namespace/01_6custom_multi.gitlab.md index d3f1cdb1a..02b3c2028 100644 --- a/tests/results/test_namespace/01_6custom_multi.gitlab.md +++ b/tests/results/test_namespace/01_6custom_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6custom_multi.md b/tests/results/test_namespace/01_6custom_multi.md index 878e2271c..87f69b16a 100644 --- a/tests/results/test_namespace/01_6custom_multi.md +++ b/tests/results/test_namespace/01_6custom_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/01_6float_multi.gitlab.md b/tests/results/test_namespace/01_6float_multi.gitlab.md index dfa12d692..50791dd59 100644 --- a/tests/results/test_namespace/01_6float_multi.gitlab.md +++ b/tests/results/test_namespace/01_6float_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| diff --git a/tests/results/test_namespace/01_6float_multi.md b/tests/results/test_namespace/01_6float_multi.md index 435e5798b..a3d9d8322 100644 --- a/tests/results/test_namespace/01_6float_multi.md +++ b/tests/results/test_namespace/01_6float_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                      | Description                                                                                                                   | diff --git a/tests/results/test_namespace/01_6integer_multi.gitlab.md b/tests/results/test_namespace/01_6integer_multi.gitlab.md index 4761ccb1f..4e9afb5a1 100644 --- a/tests/results/test_namespace/01_6integer_multi.gitlab.md +++ b/tests/results/test_namespace/01_6integer_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------| diff --git a/tests/results/test_namespace/01_6integer_multi.md b/tests/results/test_namespace/01_6integer_multi.md index 2ce7be597..672c891b2 100644 --- a/tests/results/test_namespace/01_6integer_multi.md +++ b/tests/results/test_namespace/01_6integer_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md index d8aecc55f..92a5a228c 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.md b/tests/results/test_namespace/01_6integer_multi_mandatory.md index 930fb2913..5409d7b43 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.md +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                     | Description                                                                                                                  | diff --git a/tests/results/test_namespace/01_6string_empty.gitlab.md b/tests/results/test_namespace/01_6string_empty.gitlab.md index a6e7f6be2..35537547b 100644 --- a/tests/results/test_namespace/01_6string_empty.gitlab.md +++ b/tests/results/test_namespace/01_6string_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6string_empty.md b/tests/results/test_namespace/01_6string_empty.md index 8730ff9c1..a0c67245e 100644 --- a/tests/results/test_namespace/01_6string_empty.md +++ b/tests/results/test_namespace/01_6string_empty.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/01_6string_multi.gitlab.md b/tests/results/test_namespace/01_6string_multi.gitlab.md index 295e67826..23722c0b6 100644 --- a/tests/results/test_namespace/01_6string_multi.gitlab.md +++ b/tests/results/test_namespace/01_6string_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test_namespace/01_6string_multi.md b/tests/results/test_namespace/01_6string_multi.md index 42cc71121..e160eb4cf 100644 --- a/tests/results/test_namespace/01_6string_multi.md +++ b/tests/results/test_namespace/01_6string_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/01_6string_multi_length.gitlab.md b/tests/results/test_namespace/01_6string_multi_length.gitlab.md index a4f291102..cb3a73030 100644 --- a/tests/results/test_namespace/01_6string_multi_length.gitlab.md +++ b/tests/results/test_namespace/01_6string_multi_length.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6string_multi_length.md b/tests/results/test_namespace/01_6string_multi_length.md index 6e942ce52..af0a7f5d6 100644 --- a/tests/results/test_namespace/01_6string_multi_length.md +++ b/tests/results/test_namespace/01_6string_multi_length.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md index efbfed979..73ff247fb 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------| diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.md b/tests/results/test_namespace/01_7value_multi_doublequote.md index 53f535211..8435e0b8b 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md index 6086f8c7d..f7c747331 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.md b/tests/results/test_namespace/01_7value_multi_doublequote2.md index 3d91aecf1..7b51cce14 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md index 6d26f59d2..f4726e43f 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------| diff --git a/tests/results/test_namespace/01_7value_multi_quote.md b/tests/results/test_namespace/01_7value_multi_quote.md index a522981d2..9fe0b2e4b 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.md +++ b/tests/results/test_namespace/01_7value_multi_quote.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md index ca49c8963..67edc2110 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md +++ b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_8calculation_information_multi.md b/tests/results/test_namespace/01_8calculation_information_multi.md index 4fa7972c4..afe0b4199 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.md +++ b/tests/results/test_namespace/01_8calculation_information_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 c02433fa4..bb549c99b 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md +++ b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_9choice_variable_multi.md b/tests/results/test_namespace/01_9choice_variable_multi.md index 84acaf276..3b959d21d 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.md +++ b/tests/results/test_namespace/01_9choice_variable_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md index e7f6df679..c9bd33a7e 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md +++ b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_9choice_variable_optional.md b/tests/results/test_namespace/01_9choice_variable_optional.md index 834e123fe..a834a273a 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.md +++ b/tests/results/test_namespace/01_9choice_variable_optional.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/02_0tags.gitlab.md b/tests/results/test_namespace/02_0tags.gitlab.md index d3fe0c84d..6af9f4598 100644 --- a/tests/results/test_namespace/02_0tags.gitlab.md +++ b/tests/results/test_namespace/02_0tags.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------| diff --git a/tests/results/test_namespace/02_0tags.md b/tests/results/test_namespace/02_0tags.md index 0ea53c514..0cd8923d5 100644 --- a/tests/results/test_namespace/02_0tags.md +++ b/tests/results/test_namespace/02_0tags.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/04_0type_param.gitlab.md b/tests/results/test_namespace/04_0type_param.gitlab.md index e13ffda38..8278ad755 100644 --- a/tests/results/test_namespace/04_0type_param.gitlab.md +++ b/tests/results/test_namespace/04_0type_param.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_0type_param.md b/tests/results/test_namespace/04_0type_param.md index 356955d8d..efc23aedf 100644 --- a/tests/results/test_namespace/04_0type_param.md +++ b/tests/results/test_namespace/04_0type_param.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | diff --git a/tests/results/test_namespace/04_0type_param_integer.gitlab.md b/tests/results/test_namespace/04_0type_param_integer.gitlab.md index 2acfad36d..f7e8c4f78 100644 --- a/tests/results/test_namespace/04_0type_param_integer.gitlab.md +++ b/tests/results/test_namespace/04_0type_param_integer.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_0type_param_integer.md b/tests/results/test_namespace/04_0type_param_integer.md index f98a52a58..b5d24b1b2 100644 --- a/tests/results/test_namespace/04_0type_param_integer.md +++ b/tests/results/test_namespace/04_0type_param_integer.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | diff --git a/tests/results/test_namespace/04_1auto_save.gitlab.md b/tests/results/test_namespace/04_1auto_save.gitlab.md index 45d5aea54..c13ebd099 100644 --- a/tests/results/test_namespace/04_1auto_save.gitlab.md +++ b/tests/results/test_namespace/04_1auto_save.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------| diff --git a/tests/results/test_namespace/04_1auto_save.md b/tests/results/test_namespace/04_1auto_save.md index dd063e815..6658c29d2 100644 --- a/tests/results/test_namespace/04_1auto_save.md +++ b/tests/results/test_namespace/04_1auto_save.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                | Description                                                                                                             | 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 40e6ec11d..8c9dcb4fd 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| 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 71e98a16a..e9e7876ce 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.md +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                | Description                                                                                                             | diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md index 125d6c1ee..16c0fd9a7 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md +++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.md b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.md index 835974db3..8165d68bf 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.md +++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                           | Description                                                                                                                        | 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 64d49919d..77f5edf78 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.md b/tests/results/test_namespace/04_1default_calculation_hidden.md index 68372b3f4..3b745e28e 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | 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 64d49919d..77f5edf78 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------| 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 68372b3f4..3b745e28e 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md index 58974a09f..12358dc55 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.md b/tests/results/test_namespace/04_1default_calculation_hidden_3.md index 10bc9ce4c..f2b2abec5 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md index c061f46fb..9253d064f 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.md b/tests/results/test_namespace/04_1default_calculation_hidden_4.md index b829bfa7d..3beaeaa96 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md index fa151c28a..2d28883b7 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.md b/tests/results/test_namespace/04_1default_calculation_hidden_5.md index b2badcd63..51d204e8f 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md index fa151c28a..2d28883b7 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.md b/tests/results/test_namespace/04_1default_calculation_hidden_6.md index b2badcd63..51d204e8f 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | diff --git a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md index 92d91f34f..6ee7f2f61 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation.md b/tests/results/test_namespace/04_5disabled_calculation.md index d4e7f7a1b..c3ffc359a 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.md +++ b/tests/results/test_namespace/04_5disabled_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md index dde1892c1..c63248593 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.md b/tests/results/test_namespace/04_5disabled_calculation_boolean.md index 94f45b6a7..960bfde3d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.md +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md index 08e675800..116d53026 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.md b/tests/results/test_namespace/04_5disabled_calculation_default.md index 0364b6aa4..3fd8f4831 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.md +++ b/tests/results/test_namespace/04_5disabled_calculation_default.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                | Description                                                                                                             | diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md index 7d86c9a9d..58a4b268d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.md b/tests/results/test_namespace/04_5disabled_calculation_multi.md index 3ad1b655f..702fe5d14 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.md +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                                 | Description                                                                                                                              | diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md index 320b80f0c..06da1b43c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.md b/tests/results/test_namespace/04_5disabled_calculation_optional.md index 0f5865268..500c1e9d9 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | 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 274b04037..23119d401 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------| 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 893ae5da8..1326bf65d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | 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 95071d2b8..c93d39bae 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.md b/tests/results/test_namespace/04_5disabled_calculation_variable.md index e396a0c39..0a8d0c320 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | 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 83cb43f27..8f81f625f 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.md b/tests/results/test_namespace/04_5disabled_calculation_variable10.md index 97d3cae47..bf0dac51a 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | 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 83cb43f27..8f81f625f 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.md b/tests/results/test_namespace/04_5disabled_calculation_variable2.md index 97d3cae47..bf0dac51a 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | 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 2c4933b36..33aaba8eb 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.md b/tests/results/test_namespace/04_5disabled_calculation_variable3.md index e8fa9718e..8a8d57c03 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | 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 602b6ec45..cf4c22ff0 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.md b/tests/results/test_namespace/04_5disabled_calculation_variable4.md index f6689f506..444f91514 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md index df28ef934..1c6168bab 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.md b/tests/results/test_namespace/04_5disabled_calculation_variable5.md index 01ae5776c..0c3621ba0 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md index df28ef934..1c6168bab 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.md b/tests/results/test_namespace/04_5disabled_calculation_variable6.md index 01ae5776c..0c3621ba0 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | 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 95071d2b8..c93d39bae 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.md b/tests/results/test_namespace/04_5disabled_calculation_variable7.md index e396a0c39..0a8d0c320 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                             | Description                                                                                                          | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md index df28ef934..1c6168bab 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.md b/tests/results/test_namespace/04_5disabled_calculation_variable9.md index 01ae5776c..0c3621ba0 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | 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 411f5fc12..670741be8 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------| 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 91c68e744..86319f9f2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                                 | Description                                                                                                                              | diff --git a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md index 9b04c66a2..cc95c18f2 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md +++ b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5hidden_calculation.md b/tests/results/test_namespace/04_5hidden_calculation.md index c08ab4593..5ec7d1198 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.md +++ b/tests/results/test_namespace/04_5hidden_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                              | Description                                                                                                           | diff --git a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md index 6f0f7c934..59cacde33 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md +++ b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5hidden_calculation2.md b/tests/results/test_namespace/04_5hidden_calculation2.md index 5fa8fd0b0..403fa2742 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.md +++ b/tests/results/test_namespace/04_5hidden_calculation2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                              | Description                                                                                                           | diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md index 055a59062..8464d4b72 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md index 49211aa84..081b461e3 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                              | Description                                                                                                           | diff --git a/tests/results/test_namespace/04_5validators.gitlab.md b/tests/results/test_namespace/04_5validators.gitlab.md index ab94c6161..9aed0b7b3 100644 --- a/tests/results/test_namespace/04_5validators.gitlab.md +++ b/tests/results/test_namespace/04_5validators.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators.md b/tests/results/test_namespace/04_5validators.md index c67b0e509..d394ac81e 100644 --- a/tests/results/test_namespace/04_5validators.md +++ b/tests/results/test_namespace/04_5validators.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                 | Description                                                                                              | diff --git a/tests/results/test_namespace/04_5validators_differ.gitlab.md b/tests/results/test_namespace/04_5validators_differ.gitlab.md index a8dd4878a..db4e55e04 100644 --- a/tests/results/test_namespace/04_5validators_differ.gitlab.md +++ b/tests/results/test_namespace/04_5validators_differ.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_differ.md b/tests/results/test_namespace/04_5validators_differ.md index 05243875f..b9cdabc8c 100644 --- a/tests/results/test_namespace/04_5validators_differ.md +++ b/tests/results/test_namespace/04_5validators_differ.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/04_5validators_multi.gitlab.md b/tests/results/test_namespace/04_5validators_multi.gitlab.md index 712976bcd..ca278cffa 100644 --- a/tests/results/test_namespace/04_5validators_multi.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_multi.md b/tests/results/test_namespace/04_5validators_multi.md index 759f57761..c8503027a 100644 --- a/tests/results/test_namespace/04_5validators_multi.md +++ b/tests/results/test_namespace/04_5validators_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/04_5validators_multi2.gitlab.md b/tests/results/test_namespace/04_5validators_multi2.gitlab.md index ff3971af0..3825075e3 100644 --- a/tests/results/test_namespace/04_5validators_multi2.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_multi2.md b/tests/results/test_namespace/04_5validators_multi2.md index 3cea199de..a01611f0d 100644 --- a/tests/results/test_namespace/04_5validators_multi2.md +++ b/tests/results/test_namespace/04_5validators_multi2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/04_5validators_multi3.gitlab.md b/tests/results/test_namespace/04_5validators_multi3.gitlab.md index 0bb2f0fe4..cfca73f0b 100644 --- a/tests/results/test_namespace/04_5validators_multi3.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi3.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_multi3.md b/tests/results/test_namespace/04_5validators_multi3.md index 9fa908b95..13383dcb0 100644 --- a/tests/results/test_namespace/04_5validators_multi3.md +++ b/tests/results/test_namespace/04_5validators_multi3.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | diff --git a/tests/results/test_namespace/04_5validators_warnings.gitlab.md b/tests/results/test_namespace/04_5validators_warnings.gitlab.md index dfa699a92..b583de750 100644 --- a/tests/results/test_namespace/04_5validators_warnings.gitlab.md +++ b/tests/results/test_namespace/04_5validators_warnings.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_warnings.md b/tests/results/test_namespace/04_5validators_warnings.md index 01fca1061..41038917f 100644 --- a/tests/results/test_namespace/04_5validators_warnings.md +++ b/tests/results/test_namespace/04_5validators_warnings.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | diff --git a/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md index 69ca4223d..aac4f64ca 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md +++ b/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_warnings_all.md b/tests/results/test_namespace/04_5validators_warnings_all.md index abf6ec0ea..6ca5cd47e 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.md +++ b/tests/results/test_namespace/04_5validators_warnings_all.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | diff --git a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md index 70c68b843..6c33d90a2 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md +++ b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------| diff --git a/tests/results/test_namespace/05_0multi_not_uniq.md b/tests/results/test_namespace/05_0multi_not_uniq.md index 24f4119c2..cc9983971 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.md +++ b/tests/results/test_namespace/05_0multi_not_uniq.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                              | Description                                                                                                           | diff --git a/tests/results/test_namespace/05_0multi_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_uniq.gitlab.md index 0cadcee94..8eef67188 100644 --- a/tests/results/test_namespace/05_0multi_uniq.gitlab.md +++ b/tests/results/test_namespace/05_0multi_uniq.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------| diff --git a/tests/results/test_namespace/05_0multi_uniq.md b/tests/results/test_namespace/05_0multi_uniq.md index b45685ab5..203eec6df 100644 --- a/tests/results/test_namespace/05_0multi_uniq.md +++ b/tests/results/test_namespace/05_0multi_uniq.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md index 4c5395ac2..ee493255c 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md +++ b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`advanced` - - +**rougail**
`advanced`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| diff --git a/tests/results/test_namespace/12_1auto_save_expert.md b/tests/results/test_namespace/12_1auto_save_expert.md index 025ec2e12..ae03ce47a 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.md +++ b/tests/results/test_namespace/12_1auto_save_expert.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`advanced` - +> πŸ›ˆ Informations +> **rougail** +> `advanced` | Variable                                                                                                                   | Description                                                                                                                | diff --git a/tests/results/test_namespace/16_0redefine_description.gitlab.md b/tests/results/test_namespace/16_0redefine_description.gitlab.md index 305e00774..98e1ba2cf 100644 --- a/tests/results/test_namespace/16_0redefine_description.gitlab.md +++ b/tests/results/test_namespace/16_0redefine_description.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/16_0redefine_description.md b/tests/results/test_namespace/16_0redefine_description.md index b794549af..270f919d6 100644 --- a/tests/results/test_namespace/16_0redefine_description.md +++ b/tests/results/test_namespace/16_0redefine_description.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md index 62ac36ab1..ad590a292 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md +++ b/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
family >>> [!note] Informations -
**rougail.family**
`basic` *`disabled`*
**Disabled**: depends on a calculation +**rougail.family**
`basic` *`disabled`*
**Disabled**: depends on a calculation >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.md b/tests/results/test_namespace/16_2family_redefine_calculation.md index 315f9cc8e..e89eeb871 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.md +++ b/tests/results/test_namespace/16_2family_redefine_calculation.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## family - - -| Informations | -|:------------| -| **rougail.family**
`basic` *`disabled`*
**Disabled**: depends on a calculation | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` *`disabled`* +> **Disabled**: depends on a calculation | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md index 22836b728..0866724e9 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md +++ b/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
family >>> [!note] Informations -
**rougail.family**
`basic` +**rougail.family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/16_3family_empty_at_ends.md b/tests/results/test_namespace/16_3family_empty_at_ends.md index aec625d3e..daec42e00 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.md +++ b/tests/results/test_namespace/16_3family_empty_at_ends.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## family - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md index f6ae7a2d4..f29491095 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md +++ b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| diff --git a/tests/results/test_namespace/16_5exists_nonexists.md b/tests/results/test_namespace/16_5exists_nonexists.md index 8da158329..305629e45 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.md +++ b/tests/results/test_namespace/16_5exists_nonexists.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md index cfe90ed79..16696f40b 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_calculation.md b/tests/results/test_namespace/16_5redefine_calculation.md index eb2bd7baf..4168136cd 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.md +++ b/tests/results/test_namespace/16_5redefine_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/16_5redefine_choice.gitlab.md b/tests/results/test_namespace/16_5redefine_choice.gitlab.md index 8d1bf4839..42768ddfd 100644 --- a/tests/results/test_namespace/16_5redefine_choice.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_choice.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_choice.md b/tests/results/test_namespace/16_5redefine_choice.md index de2623840..4bd0fee94 100644 --- a/tests/results/test_namespace/16_5redefine_choice.md +++ b/tests/results/test_namespace/16_5redefine_choice.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/16_5redefine_default.gitlab.md b/tests/results/test_namespace/16_5redefine_default.gitlab.md index e13e85c18..28110a774 100644 --- a/tests/results/test_namespace/16_5redefine_default.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_default.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_default.md b/tests/results/test_namespace/16_5redefine_default.md index fe2cfc1a0..e6f8a6f70 100644 --- a/tests/results/test_namespace/16_5redefine_default.md +++ b/tests/results/test_namespace/16_5redefine_default.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md index df28ef934..1c6168bab 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.md b/tests/results/test_namespace/16_5redefine_default_calculation.md index 01ae5776c..0c3621ba0 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.md +++ b/tests/results/test_namespace/16_5redefine_default_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/16_5redefine_family.gitlab.md b/tests/results/test_namespace/16_5redefine_family.gitlab.md index d1d4d5eaa..23b32ab9f 100644 --- a/tests/results/test_namespace/16_5redefine_family.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_family.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
New description >>> [!note] Informations -
**rougail.family**
`basic` +**rougail.family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/16_5redefine_family.md b/tests/results/test_namespace/16_5redefine_family.md index ba2ffead4..d1321a863 100644 --- a/tests/results/test_namespace/16_5redefine_family.md +++ b/tests/results/test_namespace/16_5redefine_family.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## New description - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_help.gitlab.md b/tests/results/test_namespace/16_5redefine_help.gitlab.md index f7f038a75..7fb5c14f0 100644 --- a/tests/results/test_namespace/16_5redefine_help.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_help.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A family >>> [!note] Informations -
**rougail.family**
Redefine help family ok.
`basic` +**rougail.family**
Redefine help family ok.
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_help.md b/tests/results/test_namespace/16_5redefine_help.md index c7738c8d3..aede5eada 100644 --- a/tests/results/test_namespace/16_5redefine_help.md +++ b/tests/results/test_namespace/16_5redefine_help.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A family - - -| Informations | -|:------------| -| **rougail.family**
Redefine help family ok.
`basic` | +> πŸ›ˆ Informations +> **rougail.family** +> Redefine help family ok. +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_multi.gitlab.md b/tests/results/test_namespace/16_5redefine_multi.gitlab.md index 0cadcee94..8eef67188 100644 --- a/tests/results/test_namespace/16_5redefine_multi.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_multi.md b/tests/results/test_namespace/16_5redefine_multi.md index b45685ab5..203eec6df 100644 --- a/tests/results/test_namespace/16_5redefine_multi.md +++ b/tests/results/test_namespace/16_5redefine_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md index 60891f012..5d86acb84 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md index 2fa5a064a..c01c059d7 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/16_5test_redefine.gitlab.md b/tests/results/test_namespace/16_5test_redefine.gitlab.md index eea4a81a7..2985765b9 100644 --- a/tests/results/test_namespace/16_5test_redefine.gitlab.md +++ b/tests/results/test_namespace/16_5test_redefine.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5test_redefine.md b/tests/results/test_namespace/16_5test_redefine.md index fbca30930..ba9ccf9ef 100644 --- a/tests/results/test_namespace/16_5test_redefine.md +++ b/tests/results/test_namespace/16_5test_redefine.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/16_6choice_redefine.gitlab.md b/tests/results/test_namespace/16_6choice_redefine.gitlab.md index 1a8794585..b47b9ac6d 100644 --- a/tests/results/test_namespace/16_6choice_redefine.gitlab.md +++ b/tests/results/test_namespace/16_6choice_redefine.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_6choice_redefine.md b/tests/results/test_namespace/16_6choice_redefine.md index dcc155625..32918349d 100644 --- a/tests/results/test_namespace/16_6choice_redefine.md +++ b/tests/results/test_namespace/16_6choice_redefine.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md index 74976510d..4bf0a4481 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md +++ b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
New description >>> [!note] Informations -
**rougail.family1**
`basic` +**rougail.family1**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -19,7 +17,7 @@
A second family >>> [!note] Informations -
**rougail.family2**
`basic` +**rougail.family2**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test_namespace/16_6exists_redefine_family.md b/tests/results/test_namespace/16_6exists_redefine_family.md index c7ac60fab..0c9651886 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.md +++ b/tests/results/test_namespace/16_6exists_redefine_family.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## New description - - -| Informations | -|:------------| -| **rougail.family1**
`basic` | +> πŸ›ˆ Informations +> **rougail.family1** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,11 +17,9 @@ ## A second family - - -| Informations | -|:------------| -| **rougail.family2**
`basic` | +> πŸ›ˆ Informations +> **rougail.family2** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16exists_exists.gitlab.md b/tests/results/test_namespace/16exists_exists.gitlab.md index d4a4e7042..947531750 100644 --- a/tests/results/test_namespace/16exists_exists.gitlab.md +++ b/tests/results/test_namespace/16exists_exists.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/16exists_exists.md b/tests/results/test_namespace/16exists_exists.md index bb8f5e416..7d10f4353 100644 --- a/tests/results/test_namespace/16exists_exists.md +++ b/tests/results/test_namespace/16exists_exists.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | diff --git a/tests/results/test_namespace/20_0family_append.gitlab.md b/tests/results/test_namespace/20_0family_append.gitlab.md index 7c1bf922d..ab585f640 100644 --- a/tests/results/test_namespace/20_0family_append.gitlab.md +++ b/tests/results/test_namespace/20_0family_append.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A family >>> [!note] Informations -
**rougail.family**
`basic` +**rougail.family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------| diff --git a/tests/results/test_namespace/20_0family_append.md b/tests/results/test_namespace/20_0family_append.md index 88e106f18..098d51004 100644 --- a/tests/results/test_namespace/20_0family_append.md +++ b/tests/results/test_namespace/20_0family_append.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A family - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family.gitlab.md b/tests/results/test_namespace/20_0multi_family.gitlab.md index d727f867e..67e3da43a 100644 --- a/tests/results/test_namespace/20_0multi_family.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family.gitlab.md @@ -1,19 +1,17 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A family >>> [!note] Informations -
**rougail.family**
`standard` +**rougail.family**
`standard` >>>
A sub family >>> [!note] Informations -
**rougail.family.subfamily**
`standard` +**rougail.family.subfamily**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/20_0multi_family.md b/tests/results/test_namespace/20_0multi_family.md index 4475e4c7e..d5e8bb0f2 100644 --- a/tests/results/test_namespace/20_0multi_family.md +++ b/tests/results/test_namespace/20_0multi_family.md @@ -1,26 +1,21 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A family - - -| Informations | -|:------------| -| **rougail.family**
`standard` | +> πŸ›ˆ Informations +> **rougail.family** +> `standard` ### A sub family - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`standard` | +> πŸ›ˆ Informations +> **rougail.family.subfamily** +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md index 5a87a17ba..8dcd10968 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md @@ -1,19 +1,17 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A family >>> [!note] Informations -
**rougail.family**
`basic` +**rougail.family**
`basic` >>>
A sub family >>> [!note] Informations -
**rougail.family.subfamily**
`basic` +**rougail.family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/20_0multi_family_basic.md b/tests/results/test_namespace/20_0multi_family_basic.md index 16396ea2b..d6fb5864e 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.md +++ b/tests/results/test_namespace/20_0multi_family_basic.md @@ -1,26 +1,21 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A family - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` ### A sub family - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`basic` | +> πŸ›ˆ Informations +> **rougail.family.subfamily** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md index 35e0f3cea..421720617 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md @@ -1,19 +1,17 @@
Rougail >>> [!note] Informations -**rougail**
`advanced` - - +**rougail**
`advanced`
>>>
A family >>> [!note] Informations -
**rougail.family**
`advanced` +**rougail.family**
`advanced` >>>
A sub family >>> [!note] Informations -
**rougail.family.subfamily**
`advanced` +**rougail.family.subfamily**
`advanced` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/20_0multi_family_expert.md b/tests/results/test_namespace/20_0multi_family_expert.md index 5003aeb35..dfcd4dd66 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.md +++ b/tests/results/test_namespace/20_0multi_family_expert.md @@ -1,26 +1,21 @@ # Variables for "Rougail" -**rougail** - -`advanced` - +> πŸ›ˆ Informations +> **rougail** +> `advanced` ## A family - - -| Informations | -|:------------| -| **rougail.family**
`advanced` | +> πŸ›ˆ Informations +> **rougail.family** +> `advanced` ### A sub family - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`advanced` | +> πŸ›ˆ Informations +> **rougail.family.subfamily** +> `advanced` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_order.gitlab.md b/tests/results/test_namespace/20_0multi_family_order.gitlab.md index 8fb211594..b67fd4072 100644 --- a/tests/results/test_namespace/20_0multi_family_order.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_order.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -12,7 +10,7 @@
A family >>> [!note] Informations -
**rougail.family**
`basic` +**rougail.family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| @@ -21,7 +19,7 @@
A sub family >>> [!note] Informations -
**rougail.family.subfamily**
`basic` +**rougail.family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/20_0multi_family_order.md b/tests/results/test_namespace/20_0multi_family_order.md index 6ed05f00a..5f48500be 100644 --- a/tests/results/test_namespace/20_0multi_family_order.md +++ b/tests/results/test_namespace/20_0multi_family_order.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                | Description                                                                                             | @@ -12,11 +11,9 @@ ## A family - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +21,9 @@ ### A sub family - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`basic` | +> πŸ›ˆ Informations +> **rougail.family.subfamily** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md index b0d06e652..b25db6749 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md +++ b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.md b/tests/results/test_namespace/20_0validators_differ_redefine.md index 0f05e5516..67921385d 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.md +++ b/tests/results/test_namespace/20_0validators_differ_redefine.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md index dc442fe99..7305afa5e 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
my_family >>> [!note] Informations -
**rougail.my_family**
`standard` +**rougail.my_family**
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.md b/tests/results/test_namespace/20_2family_looks_like_dynamic.md index 327c4d423..aafce760a 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.md +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## my_family - - -| Informations | -|:------------| -| **rougail.my_family**
`standard` | +> πŸ›ˆ Informations +> **rougail.my_family** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md index c19820912..24864d126 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md +++ b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
my_family >>> [!note] Informations -
**rougail.my_family**
`standard` +**rougail.my_family**
`standard` >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.md b/tests/results/test_namespace/20_2family_looks_like_variable.md index 9b08c0464..5ab4977fc 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.md +++ b/tests/results/test_namespace/20_2family_looks_like_variable.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## my_family - - -| Informations | -|:------------| -| **rougail.my_family**
`standard` | +> πŸ›ˆ Informations +> **rougail.my_family** +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 804ccfc5e..95cafb586 100644 --- a/tests/results/test_namespace/20_9default_information_parent.gitlab.md +++ b/tests/results/test_namespace/20_9default_information_parent.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
family >>> [!note] Informations -
**rougail.family**
`basic` +**rougail.family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_9default_information_parent.md b/tests/results/test_namespace/20_9default_information_parent.md index 681fe3ce9..b2ab1fef0 100644 --- a/tests/results/test_namespace/20_9default_information_parent.md +++ b/tests/results/test_namespace/20_9default_information_parent.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## family - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md index 030fbea6c..b7f877e04 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| @@ -12,7 +10,7 @@
Possibly hidden family >>> [!note] Informations -
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes +**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition.md b/tests/results/test_namespace/24_0family_hidden_condition.md index 5c7c7f6ef..0a6a88b45 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.md +++ b/tests/results/test_namespace/24_0family_hidden_condition.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | @@ -12,11 +11,10 @@ ## Possibly hidden family - - -| Informations | -|:------------| -| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` *`hidden`* +> **Hidden**: if condition is yes | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md index f4de3e722..24a256e32 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------| @@ -12,7 +10,7 @@
A family >>> [!note] Informations -
**rougail.family**
`standard` *`hidden`*
**Hidden**: if not condition +**rougail.family**
`standard` *`hidden`*
**Hidden**: if not condition >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.md b/tests/results/test_namespace/24_0family_hidden_condition_boolean.md index a41bf85db..ba5c899e0 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | @@ -12,11 +11,10 @@ ## A family - - -| Informations | -|:------------| -| **rougail.family**
`standard` *`hidden`*
**Hidden**: if not condition | +> πŸ›ˆ Informations +> **rougail.family** +> `standard` *`hidden`* +> **Hidden**: if not condition | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md index 0256c6771..4ca2f15d9 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| @@ -12,12 +10,12 @@
Possibly hidden family >>> [!note] Informations -
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes +**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes >>>
subfamily >>> [!note] Informations -
**rougail.family.subfamily**
`basic` +**rougail.family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md index 4f263a1b0..fbd3d65e5 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | @@ -12,19 +11,16 @@ ## Possibly hidden family - - -| Informations | -|:------------| -| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` *`hidden`* +> **Hidden**: if condition is yes ### subfamily - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`basic` | +> πŸ›ˆ Informations +> **rougail.family.subfamily** +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 50a0b2de9..a48827b09 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -12,12 +10,12 @@
Possibly hidden family >>> [!note] Informations -
**rougail.family**
`standard` *`hidden`*
**Hidden**: when the variable "[`The variable use has condition`](#rougail.condition)" has the value "true" +**rougail.family**
`standard` *`hidden`*
**Hidden**: when the variable "[`The variable use has condition`](#rougail.condition)" has the value "true" >>>
A subfamily >>> [!note] Informations -
**rougail.family.subfamily**
`standard` +**rougail.family.subfamily**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| 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 533a3ee40..0e4f4e33e 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | @@ -12,19 +11,16 @@ ## Possibly hidden family - - -| Informations | -|:------------| -| **rougail.family**
`standard` *`hidden`*
**Hidden**: when the variable "rougail.condition" has the value "true" | +> πŸ›ˆ Informations +> **rougail.family** +> `standard` *`hidden`* +> **Hidden**: when the variable "rougail.condition" has the value "true" ### A subfamily - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`standard` | +> πŸ›ˆ Informations +> **rougail.family.subfamily** +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md index fc8e60f47..18a4acf8a 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -13,7 +11,7 @@
A family >>> [!note] Informations -
**rougail.family**
`standard` *`hidden`*
**Hidden**: if condition1 is false +**rougail.family**
`standard` *`hidden`*
**Hidden**: if condition1 is false >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md index fc06db7d9..182d2be60 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | @@ -13,11 +12,10 @@ ## A family - - -| Informations | -|:------------| -| **rougail.family**
`standard` *`hidden`*
**Hidden**: if condition1 is false | +> πŸ›ˆ Informations +> **rougail.family** +> `standard` *`hidden`* +> **Hidden**: if condition1 is false | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md index 9034c9581..3e701a1fb 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| @@ -12,12 +10,12 @@
Possibly hidden family >>> [!note] Informations -
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes +**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes >>>
A subfamily >>> [!note] Informations -
**rougail.family.sub_family**
`basic` +**rougail.family.sub_family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md index d704992c6..67c7e4d95 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | @@ -12,19 +11,16 @@ ## Possibly hidden family - - -| Informations | -|:------------| -| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` *`hidden`* +> **Hidden**: if condition is yes ### A subfamily - - -| Informations | -|:------------| -| **rougail.family.sub_family**
`basic` | +> πŸ›ˆ Informations +> **rougail.family.sub_family** +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md index 26e21fe4c..cc08d77c9 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.md b/tests/results/test_namespace/24_0family_mandatory_condition.md index 9af1bfaef..d963aca62 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                     | Description                                                                                                  | 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 28f8566d4..bcac5c1e8 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------| 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 4e89b9dc9..c91ac2dcd 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                     | Description                                                                                                  | diff --git a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md index cc6fed901..b5a28469d 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md +++ b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A family >>> [!note] Informations -
**rougail.general**
`basic` +**rougail.general**
`basic` >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_7validators_variable_optional.md b/tests/results/test_namespace/24_7validators_variable_optional.md index 2d16d067a..548e9f5b4 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.md +++ b/tests/results/test_namespace/24_7validators_variable_optional.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A family - - -| Informations | -|:------------| -| **rougail.general**
`basic` | +> πŸ›ˆ Informations +> **rougail.general** +> `basic` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership.gitlab.md b/tests/results/test_namespace/40_0leadership.gitlab.md index e8a0665e8..b5297d64a 100644 --- a/tests/results/test_namespace/40_0leadership.gitlab.md +++ b/tests/results/test_namespace/40_0leadership.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test_namespace/40_0leadership.md b/tests/results/test_namespace/40_0leadership.md index c8bf82d31..50a18d6af 100644 --- a/tests/results/test_namespace/40_0leadership.md +++ b/tests/results/test_namespace/40_0leadership.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md index f25883a46..e857d21b7 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`basic` +**rougail.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test_namespace/40_0leadership_diff_name.md b/tests/results/test_namespace/40_0leadership_diff_name.md index 358051811..0b614604d 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.md +++ b/tests/results/test_namespace/40_0leadership_diff_name.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md index 4691176b7..2c3684d3a 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.md b/tests/results/test_namespace/40_0leadership_follower_default_calculation.md index 03a64c03d..3d0913009 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md index 112343744..c583c2505 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti.md index 346b24451..0739a7d36 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 c55e2daa4..2da421901 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------| 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 693a4d79a..cfff56021 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 @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md index 1a414bfd4..c1d0cd577 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.md b/tests/results/test_namespace/40_0leadership_follower_default_value.md index 1401fa2c4..19c614149 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 f14e243b5..539278db4 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`standard` +**rougail.leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.md b/tests/results/test_namespace/40_0leadership_leader_follower.md index 0565eb6bd..df0e8b72f 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.md +++ b/tests/results/test_namespace/40_0leadership_leader_follower.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leadership** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md index 91673dc4c..0bfacc696 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
general >>> [!note] Informations -
**rougail.general**
`standard` +**rougail.general**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -19,12 +17,12 @@
general1 >>> [!note] Informations -
**rougail.general1**
`basic` +**rougail.general1**
`basic` >>>
Leader >>> [!note] Informations -
**rougail.general1.leader**
This family contains lists of variable blocks.
`basic` +**rougail.general1.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.md b/tests/results/test_namespace/40_0leadership_leader_not_multi.md index 2965980f5..a4265103c 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.md +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## general - - -| Informations | -|:------------| -| **rougail.general**
`standard` | +> πŸ›ˆ Informations +> **rougail.general** +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,19 +17,16 @@ ## general1 - - -| Informations | -|:------------| -| **rougail.general1**
`basic` | +> πŸ›ˆ Informations +> **rougail.general1** +> `basic` ### Leader - - -| Informations | -|:------------| -| **rougail.general1.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.general1.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md index 2c8fbf994..a8dbd03fa 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`basic` +**rougail.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_reduce.md b/tests/results/test_namespace/40_0leadership_reduce.md index d6faff2d9..14fa0cc7e 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.md +++ b/tests/results/test_namespace/40_0leadership_reduce.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md index 5335ce621..014ce1979 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md +++ b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------| diff --git a/tests/results/test_namespace/40_1leadership_append_follower.md b/tests/results/test_namespace/40_1leadership_append_follower.md index fe57bd160..340f34426 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.md +++ b/tests/results/test_namespace/40_1leadership_append_follower.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md index 13751f913..e27ddd459 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.md b/tests/results/test_namespace/40_2leadership_calculation_index.md index 7d09bfa4e..5d75627f6 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md index 13751f913..e27ddd459 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.md b/tests/results/test_namespace/40_2leadership_calculation_index_2.md index 7d09bfa4e..5d75627f6 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md index 7ad978e37..e0a2d6cbb 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
Leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.md b/tests/results/test_namespace/40_2leadership_calculation_param_index.md index b4922b6e1..751669488 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.md +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## Leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md index 197f92206..e938049f2 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.md b/tests/results/test_namespace/40_2leadership_leader_calculation.md index d33d018d3..7844d401e 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.md +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md index 0f8b9274c..b737682a9 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`basic` +**rougail.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.md b/tests/results/test_namespace/40_6leadership_follower_multi.md index 856146ac7..07aee28e3 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md index c0a22ed0f..f55d3edac 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`basic` +**rougail.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md index 33ed61996..461af0f57 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md index af92567f6..99f1d69cd 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_boolean.md b/tests/results/test_namespace/40_8calculation_boolean.md index 2b9234a74..9ef18a06a 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.md +++ b/tests/results/test_namespace/40_8calculation_boolean.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md index 35ecf0690..d37110ce0 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.md b/tests/results/test_namespace/40_8calculation_boolean_return_none.md index 68af81ba5..af0ad9ff7 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.md +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | diff --git a/tests/results/test_namespace/40_8calculation_integer.gitlab.md b/tests/results/test_namespace/40_8calculation_integer.gitlab.md index f7ad102a2..a7d36aab6 100644 --- a/tests/results/test_namespace/40_8calculation_integer.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_integer.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_integer.md b/tests/results/test_namespace/40_8calculation_integer.md index f20dcc99c..ba4f7fbe5 100644 --- a/tests/results/test_namespace/40_8calculation_integer.md +++ b/tests/results/test_namespace/40_8calculation_integer.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                    | Description                                                                                                 | 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 7e30ba3f4..f456eb6bd 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.md b/tests/results/test_namespace/40_8calculation_multi_variable.md index eede7633d..32caf4fa3 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 45dc4a70f..1b0635939 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -12,7 +10,7 @@
A family >>> [!note] Informations -
**rougail.fam1**
`standard` +**rougail.fam1**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| 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 988418b73..740411a99 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                   | Description                                                                                                | @@ -12,11 +11,9 @@ ## A family - - -| Informations | -|:------------| -| **rougail.fam1**
`standard` | +> πŸ›ˆ Informations +> **rougail.fam1** +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 3774e9ebf..07a05ac34 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
First family >>> [!note] Informations -
**rougail.fam1**
`standard` +**rougail.fam1**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -19,7 +17,7 @@
Second family >>> [!note] Informations -
**rougail.fam2**
`standard` +**rougail.fam2**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------| 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 6ef5abe09..7b3c10863 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## First family - - -| Informations | -|:------------| -| **rougail.fam1**
`standard` | +> πŸ›ˆ Informations +> **rougail.fam1** +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,11 +17,9 @@ ## Second family - - -| Informations | -|:------------| -| **rougail.fam2**
`standard` | +> πŸ›ˆ Informations +> **rougail.fam2** +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 5eff4c5b2..3b556f7f2 100644 --- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`standard` +**rougail.leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------| 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 49cc781d5..ac11d10f3 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 @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leadership** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md index 8a65833b6..0c304f401 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md index 588c64207..42cd54fa4 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md index 8a65833b6..0c304f401 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md index 588c64207..42cd54fa4 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 11de2d560..337bfd5d4 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
leader >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------| 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 a50f382cf..1c6cd843d 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 @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## leader - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 f6b4621a7..186536ea7 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| 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 44b92abe8..ea538c9d1 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md index b5e782f02..f87da32a0 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md index 62bd8fad0..349ed31f0 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md index b5e782f02..f87da32a0 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md index 62bd8fad0..349ed31f0 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 079d3c2e8..05e671b70 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| 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 8fbe60852..0253461f1 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 9f80d505b..642e80ff7 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------| @@ -12,7 +10,7 @@
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.md b/tests/results/test_namespace/40_9leadership-calculation-variable.md index da8ac5633..5eb682aba 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,10 @@ ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 bbe31e6cc..887ed8c21 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership_1**
This family contains lists of variable blocks.
`basic` +**rougail.leadership_1**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -20,7 +18,7 @@
A second leadership >>> [!note] Informations -
**rougail.leadership_2**
This family contains lists of variable blocks.
`standard` +**rougail.leadership_2**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------| 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 81e5810c4..9e5a7db35 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 @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership_1**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leadership_1** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -21,11 +19,10 @@ ## A second leadership - - -| Informations | -|:------------| -| **rougail.leadership_2**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leadership_2** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d77415523..fb56329eb 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership_1**
This family contains lists of variable blocks.
`basic` +**rougail.leadership_1**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -20,7 +18,7 @@
A second leadership >>> [!note] Informations -
**rougail.leadership_2**
This family contains lists of variable blocks.
`standard` +**rougail.leadership_2**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| 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 21cfc1801..7699a75f9 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 @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership_1**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leadership_1** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -21,11 +19,10 @@ ## A second leadership - - -| Informations | -|:------------| -| **rougail.leadership_2**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leadership_2** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/41_0choice_leader.gitlab.md b/tests/results/test_namespace/41_0choice_leader.gitlab.md index b7384faf7..48e5f3a35 100644 --- a/tests/results/test_namespace/41_0choice_leader.gitlab.md +++ b/tests/results/test_namespace/41_0choice_leader.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
The leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/41_0choice_leader.md b/tests/results/test_namespace/41_0choice_leader.md index 6ce8f7de1..bc3224266 100644 --- a/tests/results/test_namespace/41_0choice_leader.md +++ b/tests/results/test_namespace/41_0choice_leader.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## The leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md index 3f728a7ff..652ad83a1 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------| @@ -12,7 +10,7 @@
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.md index b0d5f37f2..917b4fae9 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                    | Description                                                                                                 | @@ -12,11 +11,10 @@ ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md index 90e0beca0..06e18a596 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A leadership >>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`standard` +**rougail.leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md index 918cbf0c6..94cf9486a 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leadership** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md index 47bd4e632..9ad291e69 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md +++ b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory.md b/tests/results/test_namespace/44_4leadership_mandatory.md index cb12a3283..c5193b404 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.md +++ b/tests/results/test_namespace/44_4leadership_mandatory.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md index e92e146c3..e61be9beb 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.md index 11cd7949e..b19d27592 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.md +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md index a761bdfb9..140083136 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| @@ -12,7 +10,7 @@
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no +**rougail.leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md index b8323ee6f..94972714e 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | @@ -12,11 +11,11 @@ ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` *`hidden`* +> **Hidden**: if condition is no | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md index 7ff30fd0b..9f93c6861 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------| @@ -12,7 +10,7 @@
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md index 17ac5815a..c9bb970dd 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | @@ -12,11 +11,10 @@ ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 f1459a77f..7f822699b 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
Leader >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` +**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------| 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 00bb5b040..ebb691c9d 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## Leader - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic.gitlab.md b/tests/results/test_namespace/60_0family_dynamic.gitlab.md index ff56456d3..41d34b8eb 100644 --- a/tests/results/test_namespace/60_0family_dynamic.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic.md b/tests/results/test_namespace/60_0family_dynamic.md index 253412f96..0f967affd 100644 --- a/tests/results/test_namespace/60_0family_dynamic.md +++ b/tests/results/test_namespace/60_0family_dynamic.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 36289ebec..da0567be3 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| 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 a5051d7b9..199272b81 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 1189dd384..e1ef257d6 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| 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 a974883db..1901e99d5 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 a4db5f9e7..abb377ea7 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| 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 cfc82a87f..9d2c90cf6 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 8d6fff206..8201cbed1 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| 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 9a5bcea2b..fb70931af 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 e15ddcaf4..e909a92be 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 9c8dd1b0f..c494047f7 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 1294b55f0..ba8d0e2e1 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 ea1b1607b..73b80fb35 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 efb5d62e1..53ce26cbb 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.md b/tests/results/test_namespace/60_0family_dynamic_empty.md index 1d4fdf31e..63f16df05 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_empty.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*example*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 79ab1c571..60381c869 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val_1***
**rougail.dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val_1***
**rougail.dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| 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 8cfa2606e..5fd827c77 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val_1***
**rougail.dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val_1***
**rougail.dyn*val_2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 6e79a7eb9..35d6facdc 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| 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 dcec88173..61d7ace92 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                            | Description                                                                                                         | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*1***
**rougail.dyn*2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                            | Description                                                                                                         | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 433c0d644..9b0fdaad7 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| 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 9d00d95f0..cdae9e6c8 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*1***
**rougail.dyn*2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 8c0e87336..332ef3b8a 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| 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 0e9ec3d3b..d6f99a277 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 c3e84d5f4..4c53742b6 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| 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 132b63a58..3aeed985d 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md index f71aee2df..af72f4f9f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.md b/tests/results/test_namespace/60_0family_dynamic_source_hidden.md index 3513c609a..f21f2b706 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.md +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.md @@ -1,18 +1,17 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: (from an undocumented variable)
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md index 417fbd5b8..13a717178 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_static.md b/tests/results/test_namespace/60_0family_dynamic_static.md index c3731bcb9..a4930cfe3 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.md +++ b/tests/results/test_namespace/60_0family_dynamic_static.md @@ -1,18 +1,17 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 dae9b1325..889bb2082 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_test.md b/tests/results/test_namespace/60_0family_dynamic_test.md index 4a3b457f6..8ffb6d50d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.md +++ b/tests/results/test_namespace/60_0family_dynamic_test.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 1436da385..98eae7463 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 45c561e21..e44427b15 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.md +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d9878f4b3..a00042e35 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| 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 4ae187043..dbbc5e7d2 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*example*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md index 503307d0a..609d4ad59 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A dynamic family >>> [!note] Informations -
**rougail.dyn*a***
**rougail.dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b +**rougail.dyn*a***
**rougail.dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.md b/tests/results/test_namespace/60_0family_dynamic_variable_optional.md index b3bd13f68..2d365707a 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.md @@ -1,18 +1,17 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*a***
**rougail.dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b | +> πŸ›ˆ Informations +> **rougail.dyn*a***
**rougail.dyn*b*** +> This family builds families dynamically. +> `standard` +> **Identifiers**:
- a
- b | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 665805ce3..2d5c25626 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| 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 3adc762f4..4f24bf61d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 765a7c0ee..a7f97f852 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| 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 60fb99e17..18428ec21 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_mode.gitlab.md b/tests/results/test_namespace/60_0family_mode.gitlab.md index 109af0972..2e6b46b6f 100644 --- a/tests/results/test_namespace/60_0family_mode.gitlab.md +++ b/tests/results/test_namespace/60_0family_mode.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A family >>> [!note] Informations -
**rougail.family**
`basic` +**rougail.family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| diff --git a/tests/results/test_namespace/60_0family_mode.md b/tests/results/test_namespace/60_0family_mode.md index 35fad5f2b..b0c0f2f2b 100644 --- a/tests/results/test_namespace/60_0family_mode.md +++ b/tests/results/test_namespace/60_0family_mode.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A family - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.family** +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md index c91eaa6ae..1eb60a7d6 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value +**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.md b/tests/results/test_namespace/60_1family_dynamic_jinja.md index 0ac6406ff..1d4905aa2 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.md +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value | +> πŸ›ˆ Informations +> **rougail.dyn*1***
**rougail.dyn*2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: index of suffix value | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 51b4444bb..e7906ad91 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,12 +10,12 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>>
A family >>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` +**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| 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 d9d1938dc..bf8df03b5 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,19 +11,17 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" ### A family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 cfabacd58..09e30463d 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -12,12 +10,12 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>>
A family inside dynamic family >>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` +**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| 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 8534cd916..ba7dd5df3 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,19 +11,17 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" ### A family inside dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 670dfd016..ed167b075 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------| @@ -12,12 +10,12 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>>
A family inside dynamic family >>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` +**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| 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 4d4265788..54264368b 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,19 +11,17 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" ### A family inside dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 aedc87951..e7cb56155 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,12 +10,12 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>>
A family >>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` +**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| 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 ab42aed54..8b73865fd 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,19 +11,17 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" ### A family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 a9568222d..efcafeb70 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| 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 ab62ccc01..cdf8dd39e 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 5e4c238e3..f859fa12c 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| 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 5f0e7d989..2c7ca2786 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 6153a44d9..e17e65f35 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -13,7 +11,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.md b/tests/results/test_namespace/60_5family_dynamic_calc2.md index 4c27b950b..be0f0e78b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -13,11 +12,12 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` *`hidden`* +> **Hidden**: if var2 is no +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 49cce46b9..f0cbc66a2 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -13,7 +11,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| 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 955fba7a0..801c3c1a2 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -13,11 +12,12 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` *`hidden`* +> **Hidden**: if var2 is no +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 efe48bb5f..c3290a266 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 76c0adf85..dade7ca7d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 473e8194a..4b2f6b6c0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| 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 f30f7e210..0e9dab9f2 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 5ced31679..e2871ccbf 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| 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 bf9e50669..5c4aaa383 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md index 79531d658..3ac74adef 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md index e4e0bb750..c6e4937c7 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md @@ -1,18 +1,17 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- val2 | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md index c4771d1bf..79aa00027 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md index 284f224cd..55c8673ca 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | 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 9d6ce64ba..ea3dc96af 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 f90f43ca3..dd1de7a03 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 b713b6f12..a11f9a264 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* >>> [!note] Informations -
**rougail.dyn*val1***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 5891b4adc..875e2ba4a 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## dyn*val1* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 006d3d821..3dda20d74 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------| @@ -13,7 +11,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 4e517ba68..d90049e2e 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -13,11 +12,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md index ac690416a..a30d1857f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md index 56479c61b..72f822a1e 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md index c78120875..cf7e46f32 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md index 75b9c027a..51460fa61 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md index 3ff15c4ea..369334361 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md index ad4d7a5c1..fe208746c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | 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 9e71837c3..aabfd8533 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| 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 cc4e5d2a5..a426a0352 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 b014ff188..522395f8a 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| 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 f44fa590d..bff37e6ef 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 efe48bb5f..c3290a266 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 76c0adf85..dade7ca7d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 ac79a7faf..ea391fdb7 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 @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A dynamic famify for *val1* or A dynamic famify for *val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 650a7c9b6..8522158f4 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 @@ -1,18 +1,17 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A dynamic famify for *val1* or A dynamic famify for *val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- val2 | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 4f3c9e4c8..000cc9a8e 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 @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A dynamic famify for *val1* or A dynamic famify for *val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 f2f49613f..5f603a0c9 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 @@ -1,18 +1,17 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A dynamic famify for *val1* or A dynamic famify for *val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 9d6ce64ba..ea3dc96af 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 f90f43ca3..dd1de7a03 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md index b6e7af5a9..d23b67523 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -17,7 +15,7 @@
A family >>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` +**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md index df6ba61b7..4674ad88c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md @@ -1,18 +1,18 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` *`hidden`* +> **Hidden**: if suffix == 'val2' +> **Identifiers**:
- val1
- val2 | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,11 +20,9 @@ ### A family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 56f4624d0..c898781cc 100644 --- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 0ed4e0343..7d592ee0b 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 4460da3ad..3fb55b5fb 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| 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 ce2d03b64..f0476b495 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 411fd32f6..d0cd11432 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,7 +11,7 @@
A dynamic family >>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| 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 1f27c522d..b63412443 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -13,11 +12,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 70f488aad..556b9c165 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,7 +11,7 @@
A dynamic family >>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| 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 47a9d8883..d900dcd23 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -13,11 +12,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 4460da3ad..3fb55b5fb 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| 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 ce2d03b64..f0476b495 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 adbf914bd..4c8add800 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| 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 83c4fdb5d..2185bc67b 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 faab9dce3..c9491e581 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| 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 e0fa93f24..42b779ac0 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 20de204b1..0a3b10f8e 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| 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 10faf71ff..baaadbfa9 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 357d0a9e7..27a0f3d8a 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,12 +10,12 @@
A dynamic family >>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>>
A sub dynamic family >>> [!note] Informations -
**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***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**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***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------| 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 a63326794..6cb075a04 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,19 +11,19 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" ### A sub dynamic family - - -| Informations | -|:------------| -| **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***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **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*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 95d2e99dc..4594daf74 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| 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 6e5bd9212..57d23dae4 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn_*val1***
**rougail.dyn_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 09fd58886..8d5731d7b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`Asuffix variable`](#rougail.var)" +**rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`Asuffix variable`](#rougail.var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| 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 9041594e4..e7cf0f7b2 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn_*val1***
**rougail.dyn_*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 baac48884..dba066e7d 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.md b/tests/results/test_namespace/60_6family_dynamic_inside.md index 390374abc..27cc1ae5b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.*val1*_dyn**
**rougail.*val2*_dyn** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 cc19f4095..79d8723d8 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 971145771..db935e176 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.*val1*_dyn**
**rougail.*val2*_dyn** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 5133db4fe..4cdc75e28 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,12 +10,12 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>>
A leadership >>> [!note] Informations -
**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` +**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.md b/tests/results/test_namespace/60_6family_dynamic_leadership.md index 166fb634a..ed63a716f 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,19 +11,18 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" ### A leadership - - -| Informations | -|:------------| -| **rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 ae1dd301f..8e7aa9b3c 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| @@ -12,12 +10,12 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>>
A leadership >>> [!note] Informations -
**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` +**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| 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 c9997b196..7807998e8 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                           | Description                                                                                                        | @@ -12,19 +11,18 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" ### A leadership - - -| Informations | -|:------------| -| **rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 445ba9a03..a804e01f8 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -21,7 +19,7 @@
A Second dynamic variable >>> [!note] Informations -
**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" +**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| 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 5493c3dad..fa6513b3b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +23,11 @@ ### A Second dynamic variable - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 445ba9a03..a804e01f8 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -21,7 +19,7 @@
A Second dynamic variable >>> [!note] Informations -
**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" +**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| 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 5493c3dad..fa6513b3b 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +23,11 @@ ### A Second dynamic variable - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 f37a96381..2c3aaa7bd 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -12,12 +10,12 @@
A dynamic family >>> [!note] Informations -
**rougail.*val1***
**rougail.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.*val1***
**rougail.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>>
A dynamic family >>> [!note] Informations -
**rougail.*val1*.*val1***
**rougail.*val1*.*val2***
**rougail.*val2*.*val1***
**rougail.*val2*.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.*val1*.*val1***
**rougail.*val1*.*val2***
**rougail.*val2*.*val1***
**rougail.*val2*.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 eb4dc2966..1ee83a41e 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,19 +11,19 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1***
**rougail.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.*val1***
**rougail.*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" ### A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1*.*val1***
**rougail.*val1*.*val2***
**rougail.*val2*.*val1***
**rougail.*val2*.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.*val1*.*val1***
**rougail.*val1*.*val2***
**rougail.*val2*.*val1***
**rougail.*val2*.*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 af78db8e3..8e1e11d88 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -21,7 +19,7 @@
A Second dynamic variable >>> [!note] Informations -
**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" +**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| 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 626ecb33d..3007dbe57 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +23,11 @@ ### A Second dynamic variable - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 b6c538e81..12384ff15 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| @@ -21,7 +19,7 @@
A Second dynamic variable >>> [!note] Informations -
**rougail.dyn*val1*.dyn_*example***
**rougail.dyn*val2*.dyn_*example***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" +**rougail.dyn*val1*.dyn_*example***
**rougail.dyn*val2*.dyn_*example***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| 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 a177a6ef7..d7695334c 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                           | Description                                                                                                        | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `standard` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +23,11 @@ ### A Second dynamic variable - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn_*example***
**rougail.dyn*val2*.dyn_*example***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.dyn_*example***
**rougail.dyn*val2*.dyn_*example*** +> This family builds families dynamically. +> `standard` +> **Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 7739347cd..020cd8336 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,12 +10,12 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>>
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 a12858a8b..70cf8dbcb 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,19 +11,19 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" ### dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 fcd5eb2e0..354b55224 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| @@ -12,12 +10,12 @@
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>>
dyn*val1* or dyn*val2* >>> [!note] Informations -
**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 23d95304c..c890fd8e4 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 @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,19 +11,19 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" ### dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> πŸ›ˆ Informations +> **rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md index 3dfd58f25..d49adfa95 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md +++ b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------| @@ -14,14 +12,12 @@
Extra >>> [!note] Informations -**extra**
`basic` - - +**extra**
`basic`
>>>
dyn_*a* >>> [!note] Informations -
**extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A variable`](#rougail.var)" +**extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic.md b/tests/results/test_namespace/60_9extra_dynamic.md index 41ebccbfe..daf56a7af 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.md +++ b/tests/results/test_namespace/60_9extra_dynamic.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | @@ -12,19 +11,18 @@ # Variables for "Extra" -**extra** - -`basic` - +> πŸ›ˆ Informations +> **extra** +> `basic` ## dyn_*a* - - -| Informations | -|:------------| -| **extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **extra.dyn_*a*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 c5ab7df02..a21484e8b 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`standard` - - +**rougail**
`standard`
>>>
GΓ©nΓ©ral >>> [!note] Informations -
**rougail.general**
`standard` +**rougail.general**
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| @@ -21,9 +19,7 @@
Extra >>> [!note] Informations -**extra**
`basic` - - +**extra**
`basic`
>>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------| @@ -32,7 +28,7 @@
dyn_*a* >>> [!note] Informations -
**extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A variable`](#extra.var)" +**extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A variable`](#extra.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.md b/tests/results/test_namespace/60_9extra_dynamic_extra.md index 1eb0db102..c64eb8c17 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.md +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.md @@ -1,18 +1,15 @@ # Variables for "Rougail" -**rougail** - -`standard` - +> πŸ›ˆ Informations +> **rougail** +> `standard` ## GΓ©nΓ©ral - - -| Informations | -|:------------| -| **rougail.general**
`standard` | +> πŸ›ˆ Informations +> **rougail.general** +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,10 +17,9 @@ # Variables for "Extra" -**extra** - -`basic` - +> πŸ›ˆ Informations +> **extra** +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | @@ -32,11 +28,11 @@ ## dyn_*a* - - -| Informations | -|:------------| -| **extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "extra.var" | +> πŸ›ˆ Informations +> **extra.dyn_*a*** +> This family builds families dynamically. +> `basic` +> **Identifiers**: the value of the variable "extra.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 0311f8de2..b24afddd3 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md @@ -1,9 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| @@ -12,7 +10,7 @@
A dynamic family >>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#rougail.var)" +**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| 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 46a306a2a..dc969f996 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.md +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.md @@ -1,9 +1,8 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` | Variable                                                                                                   | Description                                                                                                | @@ -12,11 +11,11 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "rougail.var" | +> πŸ›ˆ Informations +> **rougail.dyn*val1***
**rougail.dyn*val2*** +> This family builds families dynamically. +> `basic` +> **Identifiers**:
- val1
- the value of the variable "rougail.var" | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md index d878f6f39..f6c1f5d9d 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md +++ b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md @@ -1,14 +1,12 @@
Rougail >>> [!note] Informations -**rougail**
`basic` - - +**rougail**
`basic`
>>>
A leadership >>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` +**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/68_0family_leadership_mode.md b/tests/results/test_namespace/68_0family_leadership_mode.md index 44ed0123a..b327d4895 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.md +++ b/tests/results/test_namespace/68_0family_leadership_mode.md @@ -1,18 +1,16 @@ # Variables for "Rougail" -**rougail** - -`basic` - +> πŸ›ˆ Informations +> **rougail** +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> πŸ›ˆ Informations +> **rougail.leader** +> This family contains lists of variable blocks. +> `basic` | Variable                                                                                                        | Description                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/root_a_family.gitlab.md b/tests/root_a_family.gitlab.md index 23535155e..20d644ff1 100644 --- a/tests/root_a_family.gitlab.md +++ b/tests/root_a_family.gitlab.md @@ -1,7 +1,7 @@
A second family >>> [!note] Informations -
**a_family.a_second_family** +**a_family.a_second_family** >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------| @@ -12,7 +12,7 @@
An other family >>> [!note] Informations -
**a_family.an_other_family**
*`hidden`*
**Hidden**: when the variable "[`A boolean variable`](#a_family.a_second_family.a_variable)" has the value "true" +**a_family.an_other_family**
*`hidden`*
**Hidden**: when the variable "[`A boolean variable`](#a_family.a_second_family.a_variable)" has the value "true" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| diff --git a/tests/root_a_family.md b/tests/root_a_family.md index e14b548a9..00acf0aff 100644 --- a/tests/root_a_family.md +++ b/tests/root_a_family.md @@ -1,10 +1,7 @@ # A second family - - -| Informations | -|:------------| -| **a_family.a_second_family** | +> β„Ή Informations +> **a_family.a_second_family** | Variable                                                                                         | Description                                                                                      | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +9,10 @@ # An other family - - -| Informations | -|:------------| -| **a_family.an_other_family**
*`hidden`*
**Hidden**: when the variable "a_family.a_second_family.a_variable" has the value "true" | +> β„Ή Informations +> **a_family.an_other_family** +> *`hidden`* +> **Hidden**: when the variable "a_family.a_second_family.a_variable" has the value "true" | Variable                                                                                         | Description                                                                                      | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|