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_1empty_variable.md b/tests/results/test/00_1empty_variable.md
deleted file mode 100644
index ee4ac8b1e..000000000
--- a/tests/results/test/00_1empty_variable.md
+++ /dev/null
@@ -1,4 +0,0 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **empty**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | |
-
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_examples/00_1empty_variable.md b/tests/results/test_examples/00_1empty_variable.md
deleted file mode 100644
index a30c2a883..000000000
--- a/tests/results/test_examples/00_1empty_variable.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Example with mandatory variables not filled in
-
-```yaml
----
-empty: example
-```
-# Example with all variables modifiable
-
-```yaml
----
-empty: example
-```
diff --git a/tests/results/test_examples_comment/00_1empty_variable.md b/tests/results/test_examples_comment/00_1empty_variable.md
deleted file mode 100644
index a30c2a883..000000000
--- a/tests/results/test_examples_comment/00_1empty_variable.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Example with mandatory variables not filled in
-
-```yaml
----
-empty: example
-```
-# Example with all variables modifiable
-
-```yaml
----
-empty: example
-```
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
deleted file mode 100644
index 0476d23b0..000000000
--- a/tests/results/test_namespace/00_1empty_variable.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Variables for "Rougail"
-
-> **π Informations**
->
-> **rougail**
-> `basic`
-
-
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.empty**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | |
-
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
-****
`standard`
-
-
+****
`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
-****
`standard`
-
-
+****
`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
-****
`standard`
-
-
+****
`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`
>>>