diff --git a/src/rougail/output_doc/output/github.py b/src/rougail/output_doc/output/github.py index e7e4e9c5e..723a137d1 100644 --- a/src/rougail/output_doc/output/github.py +++ b/src/rougail/output_doc/output/github.py @@ -49,7 +49,7 @@ class Formatter(CommonFormatter): lst: List[str], ) -> str: """Display line in table from a list""" - return self.enter_table.join(lst) + return self.enter_table.join([l.replace("\n", self.enter_table) for l in lst]) def bold( self, @@ -152,3 +152,18 @@ 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 after_family_properties(self) -> str: + return "
" diff --git a/src/rougail/output_doc/output/gitlab.py b/src/rougail/output_doc/output/gitlab.py index 0359384eb..6fc4d88e5 100644 --- a/src/rougail/output_doc/output/gitlab.py +++ b/src/rougail/output_doc/output/gitlab.py @@ -71,10 +71,10 @@ class Formatter(GithubFormatter): return f"\n>>>\n" def after_family_paths(self) -> str: - return "
" + return "
" def after_family_properties(self) -> str: - return "" + return "
" def table_header(self, lst): """Manage the header of a table""" diff --git a/src/rougail/output_doc/utils.py b/src/rougail/output_doc/utils.py index dc2609d70..c92df4234 100644 --- a/src/rougail/output_doc/utils.py +++ b/src/rougail/output_doc/utils.py @@ -274,7 +274,7 @@ class CommonFormatter: return "" def end_family_informations(self) -> str: - return "" + return ENTER def display_paths( self, @@ -394,30 +394,32 @@ class CommonFormatter: def family_to_string(self, informations: dict, level: int) -> str: """manage other family type""" - msg = [self.title(self.get_description("family", informations, {}, None), level)] + msg = [] + fam_info = self.family_informations() + if fam_info: + msg.append(fam_info) + msg.append( + self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths() + ) helps = informations.get("help") if helps: for help_ in helps: - msg.append(self.display_family_help(help_.strip())) - msg.append(self.family_informations()) - msg.append( - self.join(self.display_paths(informations, {}, None)) + self.after_family_paths() - ) + msg.append(to_phrase(help_.strip())) calculated_properties = [] - msg.append( - self.property_to_string(informations, calculated_properties, {})[1] + ENTER - ) + property_str = self.property_to_string(informations, calculated_properties, {})[1] + if property_str: + msg.append(property_str) if calculated_properties: msg.append( - self.join(calculated_properties) + self.after_family_properties() + self.join(calculated_properties) ) if "identifier" in informations: msg.append( self.section(_("Identifiers"), informations["identifier"]) - + self.after_family_properties() ) - msg.append(self.end_family_informations()) - return msg + return [self.title(self.get_description("family", informations, {}, None), level), + self.after_family_properties().join(msg) + self.end_family_informations(), + ] def end_family(self, level: int) -> str: return "" @@ -760,9 +762,6 @@ class CommonFormatter: def to_phrase(self, text: str) -> str: return text - def display_family_help(self, help_): - return self.to_phrase(help_) + ENTER - def property_to_string( self, informations: dict, diff --git a/tests/force_optional.adoc b/tests/force_optional.adoc index a218ee08b..dfa75cff1 100644 --- a/tests/force_optional.adoc +++ b/tests/force_optional.adoc @@ -55,12 +55,10 @@ My var8. + == My var9 -This family builds families dynamically - **var___example__** - +This family builds families dynamically. **Identifiers**: the value of the variable "a.unknown.variable" diff --git a/tests/results/test/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test/00_2default_calculated_variable_description_multi_line.gitlab.md index 455249105..413948759 100644 --- a/tests/results/test/00_2default_calculated_variable_description_multi_line.gitlab.md +++ b/tests/results/test/00_2default_calculated_variable_description_multi_line.gitlab.md @@ -1,9 +1,6 @@ -| Variable | Description | -|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| -| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | -| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | +| Variable | Description | +|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | +| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test/00_2default_calculated_variable_description_multi_line.md b/tests/results/test/00_2default_calculated_variable_description_multi_line.md index 4da9f2553..e23228ffd 100644 --- a/tests/results/test/00_2default_calculated_variable_description_multi_line.md +++ b/tests/results/test/00_2default_calculated_variable_description_multi_line.md @@ -1,9 +1,6 @@ | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | | **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test/00_6choice_variable_link2.gitlab.md b/tests/results/test/00_6choice_variable_link2.gitlab.md index 1bcb7613c..b86073a08 100644 --- a/tests/results/test/00_6choice_variable_link2.gitlab.md +++ b/tests/results/test/00_6choice_variable_link2.gitlab.md @@ -6,9 +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 0aedf1c97..e345b8cee 100644 --- a/tests/results/test/00_6choice_variable_link2.md +++ b/tests/results/test/00_6choice_variable_link2.md @@ -5,9 +5,11 @@ # family -**family** -`standard` + +| Informations | +|:------------| +| **family**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/00_6choice_variable_link2.sh b/tests/results/test/00_6choice_variable_link2.sh index e8dae3313..20c320fdf 100644 --- a/tests/results/test/00_6choice_variable_link2.sh +++ b/tests/results/test/00_6choice_variable_link2.sh @@ -17,14 +17,11 @@ family - family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/01_6string_multi_length.adoc b/tests/results/test/01_6string_multi_length.adoc new file mode 100644 index 000000000..bc7a95d0a --- /dev/null +++ b/tests/results/test/01_6string_multi_length.adoc @@ -0,0 +1,30 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validator**: needs exactly 3 values + +**Default**: + +* val1 +* val2 +* val3 +| + +**var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validators**: + +* needs a minimum of 1 values +* needs a maximum of 4 values + +**Default**: + +* val4 +* val5 +|==== + diff --git a/tests/results/test/01_6string_multi_length.gitlab.md b/tests/results/test/01_6string_multi_length.gitlab.md new file mode 100644 index 000000000..9bf6c884e --- /dev/null +++ b/tests/results/test/01_6string_multi_length.gitlab.md @@ -0,0 +1,5 @@ +| Variable | Description | +|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test/01_6string_multi_length.html b/tests/results/test/01_6string_multi_length.html new file mode 100644 index 000000000..9013f080d --- /dev/null +++ b/tests/results/test/01_6string_multi_length.html @@ -0,0 +1,14 @@ + + + + + + + + +
Variable Description
var1
string standard mandatory unique multiple
The variable.
Validator: needs exactly 3 values
Default:
  • val1
  • +
  • val2
  • +
  • val3
var2
string standard mandatory unique multiple
The variable.
Validators:
  • needs a minimum of 1 values
  • +
  • needs a maximum of 4 values

Default:
  • val4
  • +
  • val5
+ diff --git a/tests/results/test/01_6string_multi_length.json b/tests/results/test/01_6string_multi_length.json new file mode 100644 index 000000000..f0f3dc5c3 --- /dev/null +++ b/tests/results/test/01_6string_multi_length.json @@ -0,0 +1,103 @@ +{ + "var1": { + "type": "variable", + "default": { + "name": "Default", + "values": [ + "val1", + "val2", + "val3" + ] + }, + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "validators": { + "name": "Validator", + "values": "needs exactly 3 values" + }, + "path": "var1", + "names": [ + "var1" + ], + "description": "The variable.", + "gen_examples": [ + [ + "val1", + "val2", + "val3" + ] + ], + "mandatory_without_value": false + }, + "var2": { + "type": "variable", + "default": { + "name": "Default", + "values": [ + "val4", + "val5" + ] + }, + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "validators": { + "name": "Validators", + "values": [ + "needs a minimum of 1 values", + "needs a maximum of 4 values" + ] + }, + "path": "var2", + "names": [ + "var2" + ], + "description": "The variable.", + "gen_examples": [ + [ + "val4", + "val5" + ] + ], + "mandatory_without_value": false + } +} \ No newline at end of file diff --git a/tests/results/test/01_6string_multi_length.md b/tests/results/test/01_6string_multi_length.md new file mode 100644 index 000000000..f6f3f9a0c --- /dev/null +++ b/tests/results/test/01_6string_multi_length.md @@ -0,0 +1,5 @@ +| Variable                                                                                                                       | Description                                                                                                                    | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test/01_6string_multi_length.sh b/tests/results/test/01_6string_multi_length.sh new file mode 100644 index 000000000..60f4b2eeb --- /dev/null +++ b/tests/results/test/01_6string_multi_length.sh @@ -0,0 +1,18 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ Variable  ┃ Description  ┃ +┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ +│ var1 │ The variable. │ +│  string   standard   mandatory    │ Validator: needs exactly 3 values │ +│ unique   multiple  │ Default: │ +│ │ - val1 │ +│ │ - val2 │ +│ │ - val3 │ +├───────────────────────────────────────┼──────────────────────────────────────┤ +│ var2 │ The variable. │ +│  string   standard   mandatory    │ Validators: │ +│ unique   multiple  │ - needs a minimum of 1 values │ +│ │ - needs a maximum of 4 values │ +│ │ Default: │ +│ │ - val4 │ +│ │ - val5 │ +└───────────────────────────────────────┴──────────────────────────────────────┘ diff --git a/tests/results/test/16_2family_redefine_calculation.gitlab.md b/tests/results/test/16_2family_redefine_calculation.gitlab.md index 7c68f7069..fc1c6a7ec 100644 --- a/tests/results/test/16_2family_redefine_calculation.gitlab.md +++ b/tests/results/test/16_2family_redefine_calculation.gitlab.md @@ -1,9 +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 6e9dd2cae..839d30bf2 100644 --- a/tests/results/test/16_2family_redefine_calculation.md +++ b/tests/results/test/16_2family_redefine_calculation.md @@ -1,10 +1,10 @@ # family -**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_2family_redefine_calculation.sh b/tests/results/test/16_2family_redefine_calculation.sh index 21d14f097..6622aa17d 100644 --- a/tests/results/test/16_2family_redefine_calculation.sh +++ b/tests/results/test/16_2family_redefine_calculation.sh @@ -3,17 +3,13 @@ family - 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 187189580..5569bb4de 100644 --- a/tests/results/test/16_3family_empty_at_ends.gitlab.md +++ b/tests/results/test/16_3family_empty_at_ends.gitlab.md @@ -1,9 +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 2e17f4bac..531d4e09e 100644 --- a/tests/results/test/16_3family_empty_at_ends.md +++ b/tests/results/test/16_3family_empty_at_ends.md @@ -1,8 +1,10 @@ # family -**family** -`basic` + +| Informations | +|:------------| +| **family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_3family_empty_at_ends.sh b/tests/results/test/16_3family_empty_at_ends.sh index 312774f6b..c6ffb3bb2 100644 --- a/tests/results/test/16_3family_empty_at_ends.sh +++ b/tests/results/test/16_3family_empty_at_ends.sh @@ -3,14 +3,11 @@ family - 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 c37224380..dfbfb0508 100644 --- a/tests/results/test/16_5redefine_family.gitlab.md +++ b/tests/results/test/16_5redefine_family.gitlab.md @@ -1,9 +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 0884afb15..027dc76f2 100644 --- a/tests/results/test/16_5redefine_family.md +++ b/tests/results/test/16_5redefine_family.md @@ -1,8 +1,10 @@ # New description -**family** -`basic` + +| Informations | +|:------------| +| **family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_5redefine_family.sh b/tests/results/test/16_5redefine_family.sh index 2c9f52c63..d1d3599c4 100644 --- a/tests/results/test/16_5redefine_family.sh +++ b/tests/results/test/16_5redefine_family.sh @@ -3,14 +3,11 @@ New description - family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/16_5redefine_help.adoc b/tests/results/test/16_5redefine_help.adoc index 03c559787..e62ef6fc9 100644 --- a/tests/results/test/16_5redefine_help.adoc +++ b/tests/results/test/16_5redefine_help.adoc @@ -1,10 +1,10 @@ == A family -Redefine help family ok. - **family** +Redefine help family ok. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/16_5redefine_help.gitlab.md b/tests/results/test/16_5redefine_help.gitlab.md index 53861901e..c5e940225 100644 --- a/tests/results/test/16_5redefine_help.gitlab.md +++ b/tests/results/test/16_5redefine_help.gitlab.md @@ -1,11 +1,7 @@
A family -Redefine help family ok. - >>> [!note] Informations -**family**
`basic` - - +
**family**
Redefine help family ok.
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| diff --git a/tests/results/test/16_5redefine_help.html b/tests/results/test/16_5redefine_help.html index 847b0bf0a..4ccef9000 100644 --- a/tests/results/test/16_5redefine_help.html +++ b/tests/results/test/16_5redefine_help.html @@ -1,9 +1,9 @@

A family

-Redefine help family ok. - family +Redefine help family ok. + basic diff --git a/tests/results/test/16_5redefine_help.md b/tests/results/test/16_5redefine_help.md index 2481bd714..9575e383e 100644 --- a/tests/results/test/16_5redefine_help.md +++ b/tests/results/test/16_5redefine_help.md @@ -1,10 +1,10 @@ # A family -Redefine help family ok. -**family** -`basic` +| Informations | +|:------------| +| **family**
Redefine help family ok.
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_5redefine_help.sh b/tests/results/test/16_5redefine_help.sh index 83d0d3f45..c68257b00 100644 --- a/tests/results/test/16_5redefine_help.sh +++ b/tests/results/test/16_5redefine_help.sh @@ -3,17 +3,13 @@ A family -Redefine help family ok. - - - 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 e97b7cb82..f5a69e52e 100644 --- a/tests/results/test/16_6exists_redefine_family.gitlab.md +++ b/tests/results/test/16_6exists_redefine_family.gitlab.md @@ -1,9 +1,7 @@
New description >>> [!note] Informations -**family1**
`basic` - - +
**family1**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -14,9 +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 75bf4124d..e7e46d00a 100644 --- a/tests/results/test/16_6exists_redefine_family.md +++ b/tests/results/test/16_6exists_redefine_family.md @@ -1,8 +1,10 @@ # New description -**family1** -`basic` + +| Informations | +|:------------| +| **family1**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -10,9 +12,11 @@ # A second family -**family2** -`basic` + +| Informations | +|:------------| +| **family2**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_6exists_redefine_family.sh b/tests/results/test/16_6exists_redefine_family.sh index 86cc8dfb0..732dc44ea 100644 --- a/tests/results/test/16_6exists_redefine_family.sh +++ b/tests/results/test/16_6exists_redefine_family.sh @@ -3,14 +3,11 @@ New description - family1 -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,14 +20,11 @@ A second family - 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 deb235386..f5851facf 100644 --- a/tests/results/test/20_0family_append.gitlab.md +++ b/tests/results/test/20_0family_append.gitlab.md @@ -1,9 +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 5038beff5..ae91622d2 100644 --- a/tests/results/test/20_0family_append.md +++ b/tests/results/test/20_0family_append.md @@ -1,8 +1,10 @@ # A family -**family** -`basic` + +| Informations | +|:------------| +| **family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0family_append.sh b/tests/results/test/20_0family_append.sh index 88bda245d..fe2844ce0 100644 --- a/tests/results/test/20_0family_append.sh +++ b/tests/results/test/20_0family_append.sh @@ -3,14 +3,11 @@ A family - 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 e140c816b..62dcd403f 100644 --- a/tests/results/test/20_0multi_family.gitlab.md +++ b/tests/results/test/20_0multi_family.gitlab.md @@ -1,16 +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 9373bd157..d8e041d85 100644 --- a/tests/results/test/20_0multi_family.md +++ b/tests/results/test/20_0multi_family.md @@ -1,14 +1,18 @@ # A family -**family** -`standard` + +| Informations | +|:------------| +| **family**
`standard` | ## A sub family -**family.subfamily** -`standard` + +| Informations | +|:------------| +| **family.subfamily**
`standard` | | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family.sh b/tests/results/test/20_0multi_family.sh index 3cd8d5b7e..ea907876d 100644 --- a/tests/results/test/20_0multi_family.sh +++ b/tests/results/test/20_0multi_family.sh @@ -3,27 +3,21 @@ A family - family -  standard  - A sub family - 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 259832777..a1aa60e70 100644 --- a/tests/results/test/20_0multi_family_basic.gitlab.md +++ b/tests/results/test/20_0multi_family_basic.gitlab.md @@ -1,16 +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 6f9bf1fee..387522e9e 100644 --- a/tests/results/test/20_0multi_family_basic.md +++ b/tests/results/test/20_0multi_family_basic.md @@ -1,14 +1,18 @@ # A family -**family** -`basic` + +| Informations | +|:------------| +| **family**
`basic` | ## A sub family -**family.subfamily** -`basic` + +| Informations | +|:------------| +| **family.subfamily**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family_basic.sh b/tests/results/test/20_0multi_family_basic.sh index 894ebae66..98d8f5f0a 100644 --- a/tests/results/test/20_0multi_family_basic.sh +++ b/tests/results/test/20_0multi_family_basic.sh @@ -3,27 +3,21 @@ A family - family -  basic  - A sub family - 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 b47ae3db7..b81c0ba74 100644 --- a/tests/results/test/20_0multi_family_expert.gitlab.md +++ b/tests/results/test/20_0multi_family_expert.gitlab.md @@ -1,16 +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 3eceacad3..b8c4888ec 100644 --- a/tests/results/test/20_0multi_family_expert.md +++ b/tests/results/test/20_0multi_family_expert.md @@ -1,14 +1,18 @@ # A family -**family** -`advanced` + +| Informations | +|:------------| +| **family**
`advanced` | ## A sub family -**family.subfamily** -`advanced` + +| Informations | +|:------------| +| **family.subfamily**
`advanced` | | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family_expert.sh b/tests/results/test/20_0multi_family_expert.sh index 55522cb6e..1ab15eab8 100644 --- a/tests/results/test/20_0multi_family_expert.sh +++ b/tests/results/test/20_0multi_family_expert.sh @@ -3,27 +3,21 @@ A family - family -  advanced  - A sub family - 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 22605e4a3..2362ed023 100644 --- a/tests/results/test/20_0multi_family_order.gitlab.md +++ b/tests/results/test/20_0multi_family_order.gitlab.md @@ -5,9 +5,7 @@
A family >>> [!note] Informations -**family**
`basic` - - +
**family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| @@ -16,9 +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 451bae891..55993408b 100644 --- a/tests/results/test/20_0multi_family_order.md +++ b/tests/results/test/20_0multi_family_order.md @@ -4,9 +4,11 @@ # A family -**family** -`basic` + +| Informations | +|:------------| +| **family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -14,9 +16,11 @@ ## A sub family -**family.subfamily** -`basic` + +| Informations | +|:------------| +| **family.subfamily**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family_order.sh b/tests/results/test/20_0multi_family_order.sh index 9561cc686..0fe5e391a 100644 --- a/tests/results/test/20_0multi_family_order.sh +++ b/tests/results/test/20_0multi_family_order.sh @@ -9,14 +9,11 @@ A family - family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -28,14 +25,11 @@ A sub family - 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 b88755e49..5330f8056 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md +++ b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md @@ -1,9 +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 770ce4c2d..c5012d287 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.md +++ b/tests/results/test/20_2family_looks_like_dynamic.md @@ -1,8 +1,10 @@ # my_family -**my_family** -`standard` + +| Informations | +|:------------| +| **my_family**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_2family_looks_like_dynamic.sh b/tests/results/test/20_2family_looks_like_dynamic.sh index 2c5397a80..fefe64578 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.sh +++ b/tests/results/test/20_2family_looks_like_dynamic.sh @@ -3,14 +3,11 @@ my_family - 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 a80a3e383..8b8cb83bd 100644 --- a/tests/results/test/20_2family_looks_like_variable.gitlab.md +++ b/tests/results/test/20_2family_looks_like_variable.gitlab.md @@ -1,9 +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 eab162b96..6085e5f11 100644 --- a/tests/results/test/20_2family_looks_like_variable.md +++ b/tests/results/test/20_2family_looks_like_variable.md @@ -1,8 +1,10 @@ # my_family -**my_family** -`standard` + +| Informations | +|:------------| +| **my_family**
`standard` | | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_2family_looks_like_variable.sh b/tests/results/test/20_2family_looks_like_variable.sh index 33e242a62..af15f8f12 100644 --- a/tests/results/test/20_2family_looks_like_variable.sh +++ b/tests/results/test/20_2family_looks_like_variable.sh @@ -3,14 +3,11 @@ my_family - 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 b87e7df81..c66e05673 100644 --- a/tests/results/test/20_9default_information_parent.gitlab.md +++ b/tests/results/test/20_9default_information_parent.gitlab.md @@ -1,9 +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 699bbe6d0..6168737c6 100644 --- a/tests/results/test/20_9default_information_parent.md +++ b/tests/results/test/20_9default_information_parent.md @@ -1,8 +1,10 @@ # family -**family** -`basic` + +| Informations | +|:------------| +| **family**
`basic` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_9default_information_parent.sh b/tests/results/test/20_9default_information_parent.sh index f3d9da5d6..0e260dfd4 100644 --- a/tests/results/test/20_9default_information_parent.sh +++ b/tests/results/test/20_9default_information_parent.sh @@ -3,14 +3,11 @@ family - 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 547d08aba..cc28b8232 100644 --- a/tests/results/test/20_9family_absolute.gitlab.md +++ b/tests/results/test/20_9family_absolute.gitlab.md @@ -5,9 +5,7 @@
A family >>> [!note] Informations -**family**
`basic` - - +
**family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| @@ -16,9 +14,7 @@
A sub family >>> [!note] Informations -**family.subfamily**
`standard` - - +
**family.subfamily**
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -31,9 +27,7 @@
A family >>> [!note] Informations -**family2**
`standard` - - +
**family2**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| @@ -43,9 +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 8f7bec3f6..27348f479 100644 --- a/tests/results/test/20_9family_absolute.md +++ b/tests/results/test/20_9family_absolute.md @@ -4,9 +4,11 @@ # A family -**family** -`basic` + +| Informations | +|:------------| +| **family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -14,9 +16,11 @@ ## A sub family -**family.subfamily** -`standard` + +| Informations | +|:------------| +| **family.subfamily**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,9 +28,11 @@ # A family -**family2** -`standard` + +| Informations | +|:------------| +| **family2**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -35,9 +41,11 @@ ## A sub family -**family2.subfamily** -`standard` + +| Informations | +|:------------| +| **family2.subfamily**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_9family_absolute.sh b/tests/results/test/20_9family_absolute.sh index 1ef0394ba..d76960847 100644 --- a/tests/results/test/20_9family_absolute.sh +++ b/tests/results/test/20_9family_absolute.sh @@ -9,14 +9,11 @@ A family - family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -28,14 +25,11 @@ A sub family - family.subfamily -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -52,14 +46,11 @@ A family - family2 -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -75,14 +66,11 @@ A sub family - 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 11f4424bd..548c3d74b 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,16 +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 184ce004d..40d118e62 100644 --- a/tests/results/test/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test/24_0family_hidden_condition_sub_family.md @@ -4,17 +4,19 @@ # Possibly hidden family -**family** -`basic` *`hidden`* -**Hidden**: if condition is yes +| Informations | +|:------------| +| **family**
`basic` *`hidden`*
**Hidden**: if condition is yes | ## subfamily -**family.subfamily** -`basic` + +| Informations | +|:------------| +| **family.subfamily**
`basic` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.sh b/tests/results/test/24_0family_hidden_condition_sub_family.sh index fee08add9..738936334 100644 --- a/tests/results/test/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test/24_0family_hidden_condition_sub_family.sh @@ -9,30 +9,23 @@ Possibly hidden family - family -  basic   hidden  - Hidden: if condition is yes - subfamily - 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 dce0fdfba..7e6baaebc 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,16 +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 9deefa9fd..436718699 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,17 +4,19 @@ # Possibly hidden family -**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 -**family.subfamily** -`standard` + +| Informations | +|:------------| +| **family.subfamily**
`standard` | | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh index f228b4af4..a82c30a53 100644 --- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh @@ -9,30 +9,23 @@ Possibly hidden family - family -  standard   hidden  - Hidden: when the variable "condition" has the value "true" - A subfamily - 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 d42e388bc..3a7f13598 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,16 +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 14b7dce66..642719eea 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,17 +4,19 @@ # Possibly hidden family -**family** -`basic` *`hidden`* -**Hidden**: if condition is yes +| Informations | +|:------------| +| **family**
`basic` *`hidden`*
**Hidden**: if condition is yes | ## A subfamily -**family.sub_family** -`basic` + +| Informations | +|:------------| +| **family.sub_family**
`basic` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test/24_0family_hidden_param_condition_sub_family.sh index a61a479b5..79a3dceee 100644 --- a/tests/results/test/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test/24_0family_hidden_param_condition_sub_family.sh @@ -9,30 +9,23 @@ Possibly hidden family - family -  basic   hidden  - Hidden: if condition is yes - A subfamily - 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 aa4456d1b..0ef676bdd 100644 --- a/tests/results/test/24_7validators_variable_optional.gitlab.md +++ b/tests/results/test/24_7validators_variable_optional.gitlab.md @@ -1,9 +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 e2d82a81b..849dafcff 100644 --- a/tests/results/test/24_7validators_variable_optional.md +++ b/tests/results/test/24_7validators_variable_optional.md @@ -1,8 +1,10 @@ # A family -**general** -`basic` + +| Informations | +|:------------| +| **general**
`basic` | | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_7validators_variable_optional.sh b/tests/results/test/24_7validators_variable_optional.sh index 4f4672304..0cd8a6c2b 100644 --- a/tests/results/test/24_7validators_variable_optional.sh +++ b/tests/results/test/24_7validators_variable_optional.sh @@ -3,14 +3,11 @@ A family - general -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_0leadership.adoc b/tests/results/test/40_0leadership.adoc index a47a4af83..d24307341 100644 --- a/tests/results/test/40_0leadership.adoc +++ b/tests/results/test/40_0leadership.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/40_0leadership.gitlab.md b/tests/results/test/40_0leadership.gitlab.md index 7c0e75bd9..9698ee424 100644 --- a/tests/results/test/40_0leadership.gitlab.md +++ b/tests/results/test/40_0leadership.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`basic` - - +
**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test/40_0leadership.html b/tests/results/test/40_0leadership.html index 8b357f406..84e877b04 100644 --- a/tests/results/test/40_0leadership.html +++ b/tests/results/test/40_0leadership.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/40_0leadership.md b/tests/results/test/40_0leadership.md index 5a48f0015..dbc8501d0 100644 --- a/tests/results/test/40_0leadership.md +++ b/tests/results/test/40_0leadership.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`basic` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership.sh b/tests/results/test/40_0leadership.sh index ab4cc267f..6ec826708 100644 --- a/tests/results/test/40_0leadership.sh +++ b/tests/results/test/40_0leadership.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_0leadership_diff_name.adoc b/tests/results/test/40_0leadership_diff_name.adoc index ddcd10107..d3cde2e90 100644 --- a/tests/results/test/40_0leadership_diff_name.adoc +++ b/tests/results/test/40_0leadership_diff_name.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/40_0leadership_diff_name.gitlab.md b/tests/results/test/40_0leadership_diff_name.gitlab.md index 4416634c2..77366ddfb 100644 --- a/tests/results/test/40_0leadership_diff_name.gitlab.md +++ b/tests/results/test/40_0leadership_diff_name.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership**
`basic` - - +
**leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test/40_0leadership_diff_name.html b/tests/results/test/40_0leadership_diff_name.html index dd4248f5c..962b6eb8d 100644 --- a/tests/results/test/40_0leadership_diff_name.html +++ b/tests/results/test/40_0leadership_diff_name.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/40_0leadership_diff_name.md b/tests/results/test/40_0leadership_diff_name.md index 417d3ed5e..677c2769a 100644 --- a/tests/results/test/40_0leadership_diff_name.md +++ b/tests/results/test/40_0leadership_diff_name.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leadership** -`basic` +| Informations | +|:------------| +| **leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_diff_name.sh b/tests/results/test/40_0leadership_diff_name.sh index 1ef3131c1..f24f83f20 100644 --- a/tests/results/test/40_0leadership_diff_name.sh +++ b/tests/results/test/40_0leadership_diff_name.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_0leadership_follower_default_calculation.adoc b/tests/results/test/40_0leadership_follower_default_calculation.adoc index 4780f4546..86cb2997a 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.adoc +++ b/tests/results/test/40_0leadership_follower_default_calculation.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] 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 eb762ad18..ada56741d 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md +++ b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`basic` - - +
**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_calculation.html b/tests/results/test/40_0leadership_follower_default_calculation.html index 36cb5415b..034c85565 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.html +++ b/tests/results/test/40_0leadership_follower_default_calculation.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/40_0leadership_follower_default_calculation.md b/tests/results/test/40_0leadership_follower_default_calculation.md index b501fb2a6..8f8fa8f03 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.md +++ b/tests/results/test/40_0leadership_follower_default_calculation.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`basic` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_calculation.sh b/tests/results/test/40_0leadership_follower_default_calculation.sh index 3506d0f93..a60baffe0 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test/40_0leadership_follower_default_calculation.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_0leadership_follower_default_value.adoc b/tests/results/test/40_0leadership_follower_default_value.adoc index d70fd8ed1..b3864ec0c 100644 --- a/tests/results/test/40_0leadership_follower_default_value.adoc +++ b/tests/results/test/40_0leadership_follower_default_value.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 27091b3d6..fc61fd27b 100644 --- a/tests/results/test/40_0leadership_follower_default_value.gitlab.md +++ b/tests/results/test/40_0leadership_follower_default_value.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_value.html b/tests/results/test/40_0leadership_follower_default_value.html index b0c19b953..49796e474 100644 --- a/tests/results/test/40_0leadership_follower_default_value.html +++ b/tests/results/test/40_0leadership_follower_default_value.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test/40_0leadership_follower_default_value.md b/tests/results/test/40_0leadership_follower_default_value.md index 4853ae02b..e327e376d 100644 --- a/tests/results/test/40_0leadership_follower_default_value.md +++ b/tests/results/test/40_0leadership_follower_default_value.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`standard` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_value.sh b/tests/results/test/40_0leadership_follower_default_value.sh index 9e567b855..e2db1f2aa 100644 --- a/tests/results/test/40_0leadership_follower_default_value.sh +++ b/tests/results/test/40_0leadership_follower_default_value.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_0leadership_leader_follower.adoc b/tests/results/test/40_0leadership_leader_follower.adoc index 74ca85e71..7186d231a 100644 --- a/tests/results/test/40_0leadership_leader_follower.adoc +++ b/tests/results/test/40_0leadership_leader_follower.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test/40_0leadership_leader_follower.gitlab.md b/tests/results/test/40_0leadership_leader_follower.gitlab.md index 9b5c01ddf..6e25fc643 100644 --- a/tests/results/test/40_0leadership_leader_follower.gitlab.md +++ b/tests/results/test/40_0leadership_leader_follower.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership**
`standard` - - +
**leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_leader_follower.html b/tests/results/test/40_0leadership_leader_follower.html index d77d0890a..53f21f1cb 100644 --- a/tests/results/test/40_0leadership_leader_follower.html +++ b/tests/results/test/40_0leadership_leader_follower.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test/40_0leadership_leader_follower.md b/tests/results/test/40_0leadership_leader_follower.md index 035569086..28e2ff60c 100644 --- a/tests/results/test/40_0leadership_leader_follower.md +++ b/tests/results/test/40_0leadership_leader_follower.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leadership** -`standard` +| Informations | +|:------------| +| **leadership**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_leader_follower.sh b/tests/results/test/40_0leadership_leader_follower.sh index 79590ab21..edf7a19dc 100644 --- a/tests/results/test/40_0leadership_leader_follower.sh +++ b/tests/results/test/40_0leadership_leader_follower.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leadership +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_0leadership_leader_not_multi.adoc b/tests/results/test/40_0leadership_leader_not_multi.adoc index dff381f60..df6166abc 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.adoc +++ b/tests/results/test/40_0leadership_leader_not_multi.adoc @@ -25,11 +25,11 @@ No change. + === Leader -This family contains lists of variable blocks - **general1.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] 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 d2237caac..905fcce13 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md +++ b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md @@ -1,9 +1,7 @@
general >>> [!note] Informations -**general**
`standard` - - +
**general**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -14,18 +12,12 @@
general1 >>> [!note] Informations -**general1**
`basic` - - +
**general1**
`basic` >>>
Leader -This family contains lists of variable blocks - >>> [!note] Informations -**general1.leader**
`basic` - - +
**general1.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/40_0leadership_leader_not_multi.html b/tests/results/test/40_0leadership_leader_not_multi.html index 43ff96727..d452f2b20 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.html +++ b/tests/results/test/40_0leadership_leader_not_multi.html @@ -21,10 +21,10 @@

Leader

-This family contains lists of variable blocks - general1.leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/40_0leadership_leader_not_multi.md b/tests/results/test/40_0leadership_leader_not_multi.md index 7815f2492..bffa7b2da 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.md +++ b/tests/results/test/40_0leadership_leader_not_multi.md @@ -1,8 +1,10 @@ # general -**general** -`standard` + +| Informations | +|:------------| +| **general**
`standard` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -10,17 +12,19 @@ # general1 -**general1** -`basic` + +| Informations | +|:------------| +| **general1**
`basic` | ## Leader -This family contains lists of variable blocks -**general1.leader** -`basic` +| Informations | +|:------------| +| **general1.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_leader_not_multi.sh b/tests/results/test/40_0leadership_leader_not_multi.sh index 7449e8e80..fbf4f1bbb 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.sh +++ b/tests/results/test/40_0leadership_leader_not_multi.sh @@ -3,14 +3,11 @@ general - general -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,30 +20,23 @@ general1 - general1 -  basic  - Leader -This family contains lists of variable blocks - - - general1.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_0leadership_reduce.adoc b/tests/results/test/40_0leadership_reduce.adoc index f604a30e5..852b38aa1 100644 --- a/tests/results/test/40_0leadership_reduce.adoc +++ b/tests/results/test/40_0leadership_reduce.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/40_0leadership_reduce.gitlab.md b/tests/results/test/40_0leadership_reduce.gitlab.md index d5ce54567..dc13be049 100644 --- a/tests/results/test/40_0leadership_reduce.gitlab.md +++ b/tests/results/test/40_0leadership_reduce.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership**
`basic` - - +
**leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_reduce.html b/tests/results/test/40_0leadership_reduce.html index 8e7939703..b701022d2 100644 --- a/tests/results/test/40_0leadership_reduce.html +++ b/tests/results/test/40_0leadership_reduce.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/40_0leadership_reduce.md b/tests/results/test/40_0leadership_reduce.md index c286b42b3..68a1913be 100644 --- a/tests/results/test/40_0leadership_reduce.md +++ b/tests/results/test/40_0leadership_reduce.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leadership** -`basic` +| Informations | +|:------------| +| **leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_reduce.sh b/tests/results/test/40_0leadership_reduce.sh index 8b57f8f5f..26da85cb2 100644 --- a/tests/results/test/40_0leadership_reduce.sh +++ b/tests/results/test/40_0leadership_reduce.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_1leadership_append_follower.adoc b/tests/results/test/40_1leadership_append_follower.adoc index de4257fa4..3c288bc3d 100644 --- a/tests/results/test/40_1leadership_append_follower.adoc +++ b/tests/results/test/40_1leadership_append_follower.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/40_1leadership_append_follower.gitlab.md b/tests/results/test/40_1leadership_append_follower.gitlab.md index ed0754c7c..c7a5ebd8e 100644 --- a/tests/results/test/40_1leadership_append_follower.gitlab.md +++ b/tests/results/test/40_1leadership_append_follower.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`basic` - - +
**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------| diff --git a/tests/results/test/40_1leadership_append_follower.html b/tests/results/test/40_1leadership_append_follower.html index 3da24e158..9b8551c67 100644 --- a/tests/results/test/40_1leadership_append_follower.html +++ b/tests/results/test/40_1leadership_append_follower.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/40_1leadership_append_follower.md b/tests/results/test/40_1leadership_append_follower.md index bfbc76bbf..45bd0f861 100644 --- a/tests/results/test/40_1leadership_append_follower.md +++ b/tests/results/test/40_1leadership_append_follower.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`basic` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_1leadership_append_follower.sh b/tests/results/test/40_1leadership_append_follower.sh index bc086fa73..05e2d0093 100644 --- a/tests/results/test/40_1leadership_append_follower.sh +++ b/tests/results/test/40_1leadership_append_follower.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_2leadership_calculation_index.adoc b/tests/results/test/40_2leadership_calculation_index.adoc index 551f97af4..70b6ae56f 100644 --- a/tests/results/test/40_2leadership_calculation_index.adoc +++ b/tests/results/test/40_2leadership_calculation_index.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test/40_2leadership_calculation_index.gitlab.md b/tests/results/test/40_2leadership_calculation_index.gitlab.md index 59dbe557e..b10c32d53 100644 --- a/tests/results/test/40_2leadership_calculation_index.gitlab.md +++ b/tests/results/test/40_2leadership_calculation_index.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index.html b/tests/results/test/40_2leadership_calculation_index.html index c42f2eead..5110a1b99 100644 --- a/tests/results/test/40_2leadership_calculation_index.html +++ b/tests/results/test/40_2leadership_calculation_index.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test/40_2leadership_calculation_index.md b/tests/results/test/40_2leadership_calculation_index.md index 06375aa8c..256be6e75 100644 --- a/tests/results/test/40_2leadership_calculation_index.md +++ b/tests/results/test/40_2leadership_calculation_index.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`standard` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index.sh b/tests/results/test/40_2leadership_calculation_index.sh index 3da563a21..67c825ca6 100644 --- a/tests/results/test/40_2leadership_calculation_index.sh +++ b/tests/results/test/40_2leadership_calculation_index.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_2leadership_calculation_index_2.adoc b/tests/results/test/40_2leadership_calculation_index_2.adoc index 551f97af4..70b6ae56f 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.adoc +++ b/tests/results/test/40_2leadership_calculation_index_2.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 59dbe557e..b10c32d53 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md +++ b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index_2.html b/tests/results/test/40_2leadership_calculation_index_2.html index c42f2eead..5110a1b99 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.html +++ b/tests/results/test/40_2leadership_calculation_index_2.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test/40_2leadership_calculation_index_2.md b/tests/results/test/40_2leadership_calculation_index_2.md index 06375aa8c..256be6e75 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.md +++ b/tests/results/test/40_2leadership_calculation_index_2.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`standard` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index_2.sh b/tests/results/test/40_2leadership_calculation_index_2.sh index 3da563a21..67c825ca6 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.sh +++ b/tests/results/test/40_2leadership_calculation_index_2.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_6leadership_follower_multi.adoc b/tests/results/test/40_6leadership_follower_multi.adoc index c0b50e0bc..d0227033e 100644 --- a/tests/results/test/40_6leadership_follower_multi.adoc +++ b/tests/results/test/40_6leadership_follower_multi.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/40_6leadership_follower_multi.gitlab.md b/tests/results/test/40_6leadership_follower_multi.gitlab.md index 7c89e585a..a429e62a8 100644 --- a/tests/results/test/40_6leadership_follower_multi.gitlab.md +++ b/tests/results/test/40_6leadership_follower_multi.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership**
`basic` - - +
**leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi.html b/tests/results/test/40_6leadership_follower_multi.html index 00b644762..6a454dd96 100644 --- a/tests/results/test/40_6leadership_follower_multi.html +++ b/tests/results/test/40_6leadership_follower_multi.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/40_6leadership_follower_multi.md b/tests/results/test/40_6leadership_follower_multi.md index d373a4d48..4469df34d 100644 --- a/tests/results/test/40_6leadership_follower_multi.md +++ b/tests/results/test/40_6leadership_follower_multi.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leadership** -`basic` +| Informations | +|:------------| +| **leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi.sh b/tests/results/test/40_6leadership_follower_multi.sh index cd17090f9..6fbb17982 100644 --- a/tests/results/test/40_6leadership_follower_multi.sh +++ b/tests/results/test/40_6leadership_follower_multi.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.adoc b/tests/results/test/40_6leadership_follower_multi_no_mandatory.adoc index 93785e2d7..1ff53bece 100644 --- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.adoc +++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] 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 4f4fc4fda..8cc55d456 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,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership**
`basic` - - +
**leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.html b/tests/results/test/40_6leadership_follower_multi_no_mandatory.html index 53fc1b804..0e41182a6 100644 --- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.html +++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership +This family contains lists of variable blocks. + basic
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 41ba65634..26a79c67f 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,10 @@ # A leadership -This family contains lists of variable blocks -**leadership** -`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.sh b/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh index 15ce69308..9fcd57bb3 100644 --- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - 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 a0f6e285f..2352c77d8 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md +++ b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md @@ -5,9 +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 caa0ae8f0..a25e7c68a 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.md +++ b/tests/results/test/40_8calculation_multi_variable_parent.md @@ -4,9 +4,11 @@ # A family -**fam1** -`standard` + +| Informations | +|:------------| +| **fam1**
`standard` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_8calculation_multi_variable_parent.sh b/tests/results/test/40_8calculation_multi_variable_parent.sh index cd4ed14fe..a6d5dec8c 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.sh +++ b/tests/results/test/40_8calculation_multi_variable_parent.sh @@ -9,14 +9,11 @@ A family - 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 98e644658..895c2740f 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md +++ b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md @@ -1,9 +1,7 @@
First family >>> [!note] Informations -**fam1**
`standard` - - +
**fam1**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -14,9 +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 a8637185a..3c8ad2c89 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test/40_8calculation_multi_variable_parent2.md @@ -1,8 +1,10 @@ # First family -**fam1** -`standard` + +| Informations | +|:------------| +| **fam1**
`standard` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -10,9 +12,11 @@ # Second family -**fam2** -`standard` + +| Informations | +|:------------| +| **fam2**
`standard` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.sh b/tests/results/test/40_8calculation_multi_variable_parent2.sh index 7a66def1c..56bf7eccd 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.sh +++ b/tests/results/test/40_8calculation_multi_variable_parent2.sh @@ -3,14 +3,11 @@ First family - fam1 -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,14 +20,11 @@ Second family - fam2 -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.adoc index ac8b26c93..f09468eb8 100644 --- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.adoc +++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 00a96e130..dac85bd7b 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,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership**
`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.html b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.html index fee205a0f..57d022c88 100644 --- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.html +++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership +This family contains lists of variable blocks. + standard
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 bd374c4c7..7344accc9 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,10 @@ # A leadership -This family contains lists of variable blocks -**leadership** -`standard` +| Informations | +|:------------| +| **leadership**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh index be474d4fa..728a9f1a7 100644 --- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leadership +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.adoc b/tests/results/test/40_9leadership-calculation-outside-follower-first.adoc index b5f6fb882..e468f78a3 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-first.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 6f771162f..b4d20041e 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,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.html b/tests/results/test/40_9leadership-calculation-outside-follower-first.html index 3e5a66511..f5990a800 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-first.html +++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
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 01bc71528..fe9d86dcf 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,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`standard` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test/40_9leadership-calculation-outside-follower-first.sh index 60a6bf6f8..f96c6fc02 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.adoc b/tests/results/test/40_9leadership-calculation-outside-follower-last.adoc index b5f6fb882..e468f78a3 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-last.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 6f771162f..b4d20041e 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,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.html b/tests/results/test/40_9leadership-calculation-outside-follower-last.html index 3e5a66511..f5990a800 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-last.html +++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
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 01bc71528..fe9d86dcf 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,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`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.sh b/tests/results/test/40_9leadership-calculation-outside-follower-last.sh index 60a6bf6f8..f96c6fc02 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.adoc index 7e5c0cacd..712bb51b6 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.adoc @@ -1,10 +1,10 @@ == leader -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 d9f5204f2..cb333803d 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,11 +1,7 @@
leader -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`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.html b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.html index a1925708b..c6ff43766 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.html +++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.html @@ -1,9 +1,9 @@

leader

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
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 bafd06065..7dd6111b0 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,10 @@ # leader -This family contains lists of variable blocks -**leader** -`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.sh b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh index e303d50dd..7e1030a81 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -3,17 +3,13 @@ leader -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.adoc b/tests/results/test/40_9leadership-calculation-outside-follower.adoc index f0af7e44c..c66b877c5 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-follower.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 5dbbd00b1..90e7069d5 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.html b/tests/results/test/40_9leadership-calculation-outside-follower.html index fc2cf56ae..23d3e4c62 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.html +++ b/tests/results/test/40_9leadership-calculation-outside-follower.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.md b/tests/results/test/40_9leadership-calculation-outside-follower.md index 6fdde9b3e..531b6b239 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`standard` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.sh b/tests/results/test/40_9leadership-calculation-outside-follower.sh index 5d7d68baa..aa691f1fc 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test/40_9leadership-calculation-outside-follower.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.adoc b/tests/results/test/40_9leadership-calculation-outside-leader-first.adoc index 3f34ba62f..dc4fe7ce8 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-first.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 b51b96db2..ddc9f3e55 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,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.html b/tests/results/test/40_9leadership-calculation-outside-leader-first.html index 1f824edaf..16b0fcd33 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-first.html +++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
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 651a17e48..e2ad89137 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,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`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.sh b/tests/results/test/40_9leadership-calculation-outside-leader-first.sh index 843ac96b9..10b48b4ef 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.adoc b/tests/results/test/40_9leadership-calculation-outside-leader-last.adoc index 3f34ba62f..dc4fe7ce8 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-last.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 b51b96db2..ddc9f3e55 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,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.html b/tests/results/test/40_9leadership-calculation-outside-leader-last.html index 1f824edaf..16b0fcd33 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-last.html +++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
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 651a17e48..e2ad89137 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,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`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.sh b/tests/results/test/40_9leadership-calculation-outside-leader-last.sh index 843ac96b9..10b48b4ef 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.adoc b/tests/results/test/40_9leadership-calculation-outside-leader.adoc index 5efc9ddab..7a8e61ba2 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-leader.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 1abdb07a3..911caaab6 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.html b/tests/results/test/40_9leadership-calculation-outside-leader.html index c9051a53f..344bbcad9 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.html +++ b/tests/results/test/40_9leadership-calculation-outside-leader.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.md b/tests/results/test/40_9leadership-calculation-outside-leader.md index 00016c73a..31081e4f1 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`standard` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.sh b/tests/results/test/40_9leadership-calculation-outside-leader.sh index 64b2e21c5..b08929b4f 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test/40_9leadership-calculation-outside-leader.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-variable.adoc b/tests/results/test/40_9leadership-calculation-variable.adoc index b8ff1ff32..535dc014f 100644 --- a/tests/results/test/40_9leadership-calculation-variable.adoc +++ b/tests/results/test/40_9leadership-calculation-variable.adoc @@ -14,11 +14,11 @@ A calculated variable. + == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test/40_9leadership-calculation-variable.gitlab.md b/tests/results/test/40_9leadership-calculation-variable.gitlab.md index 88fc005a6..b30fc1fbd 100644 --- a/tests/results/test/40_9leadership-calculation-variable.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-variable.gitlab.md @@ -4,12 +4,8 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`standard` - - +
**leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-variable.html b/tests/results/test/40_9leadership-calculation-variable.html index e69a02417..5ee779b04 100644 --- a/tests/results/test/40_9leadership-calculation-variable.html +++ b/tests/results/test/40_9leadership-calculation-variable.html @@ -10,10 +10,10 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test/40_9leadership-calculation-variable.md b/tests/results/test/40_9leadership-calculation-variable.md index d03bfada0..f415c28e6 100644 --- a/tests/results/test/40_9leadership-calculation-variable.md +++ b/tests/results/test/40_9leadership-calculation-variable.md @@ -4,11 +4,11 @@ # A leadership -This family contains lists of variable blocks -**leader** -`standard` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-variable.sh b/tests/results/test/40_9leadership-calculation-variable.sh index 4f03d787e..2e88fa97d 100644 --- a/tests/results/test/40_9leadership-calculation-variable.sh +++ b/tests/results/test/40_9leadership-calculation-variable.sh @@ -11,17 +11,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc index 9130b40f8..1b62d7635 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership_1** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] @@ -28,11 +28,11 @@ A follower. == A second leadership -This family contains lists of variable blocks - **leadership_2** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 6efef6c61..705733397 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,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership_1**
`basic` - - +
**leadership_1**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -16,12 +12,8 @@ This family contains lists of variable blocks
A second leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership_2**
`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.html b/tests/results/test/40_9leadership-calculation-variable_leader_follower.html index d397260d5..75651860b 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.html +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership_1 +This family contains lists of variable blocks. + basic
@@ -19,10 +19,10 @@ This family contains lists of variable blocks

A second leadership

-This family contains lists of variable blocks - leadership_2 +This family contains lists of variable blocks. + standard
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 53477e6db..4035706de 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,10 @@ # A leadership -This family contains lists of variable blocks -**leadership_1** -`basic` +| Informations | +|:------------| +| **leadership_1**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +13,11 @@ This family contains lists of variable blocks # A second leadership -This family contains lists of variable blocks -**leadership_2** -`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.sh b/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh index 45c2770df..d342c14bd 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leadership_1 +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -31,17 +27,13 @@ This family contains lists of variable blocks A second leadership -This family contains lists of variable blocks - - - 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.adoc b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc index 000d65a2f..494bd7a04 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership_1** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] @@ -28,11 +28,11 @@ A follower. == A second leadership -This family contains lists of variable blocks - **leadership_2** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 a643b16ac..89063cecb 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,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership_1**
`basic` - - +
**leadership_1**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -16,12 +12,8 @@ This family contains lists of variable blocks
A second leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership_2**
`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.html b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.html index 2fefc83b0..b4fd45173 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.html +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership_1 +This family contains lists of variable blocks. + basic
@@ -19,10 +19,10 @@ This family contains lists of variable blocks

A second leadership

-This family contains lists of variable blocks - leadership_2 +This family contains lists of variable blocks. + standard
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 0f1d45bf3..73d11e071 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,10 @@ # A leadership -This family contains lists of variable blocks -**leadership_1** -`basic` +| Informations | +|:------------| +| **leadership_1**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +13,11 @@ This family contains lists of variable blocks # A second leadership -This family contains lists of variable blocks -**leadership_2** -`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.sh b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh index c1ecd5dff..19caba66d 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leadership_1 +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -31,17 +27,13 @@ This family contains lists of variable blocks A second leadership -This family contains lists of variable blocks - - - leadership_2 +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/41_0choice_leader.adoc b/tests/results/test/41_0choice_leader.adoc index 1d9f21583..f7ce1eb6a 100644 --- a/tests/results/test/41_0choice_leader.adoc +++ b/tests/results/test/41_0choice_leader.adoc @@ -1,10 +1,10 @@ == The leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/41_0choice_leader.gitlab.md b/tests/results/test/41_0choice_leader.gitlab.md index 2eab3756c..99617eec9 100644 --- a/tests/results/test/41_0choice_leader.gitlab.md +++ b/tests/results/test/41_0choice_leader.gitlab.md @@ -1,11 +1,7 @@
The leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`basic` - - +
**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test/41_0choice_leader.html b/tests/results/test/41_0choice_leader.html index 343d84fb4..196a38d29 100644 --- a/tests/results/test/41_0choice_leader.html +++ b/tests/results/test/41_0choice_leader.html @@ -1,9 +1,9 @@

The leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/41_0choice_leader.md b/tests/results/test/41_0choice_leader.md index e8dd10304..6de121977 100644 --- a/tests/results/test/41_0choice_leader.md +++ b/tests/results/test/41_0choice_leader.md @@ -1,10 +1,10 @@ # The leadership -This family contains lists of variable blocks -**leader** -`basic` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/41_0choice_leader.sh b/tests/results/test/41_0choice_leader.sh index 4d6545501..ec5c8e6be 100644 --- a/tests/results/test/41_0choice_leader.sh +++ b/tests/results/test/41_0choice_leader.sh @@ -3,17 +3,13 @@ The leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.adoc b/tests/results/test/44_4disabled_calcultion_follower_index.adoc index 9ae44767f..2ead6c622 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.adoc +++ b/tests/results/test/44_4disabled_calcultion_follower_index.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leadership** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] 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 6713346f5..82f103870 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md +++ b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leadership**
`standard` - - +
**leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.html b/tests/results/test/44_4disabled_calcultion_follower_index.html index b96658b45..e52ab7b69 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.html +++ b/tests/results/test/44_4disabled_calcultion_follower_index.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leadership +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.md b/tests/results/test/44_4disabled_calcultion_follower_index.md index 4eace33a1..39143f500 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.md +++ b/tests/results/test/44_4disabled_calcultion_follower_index.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leadership** -`standard` +| Informations | +|:------------| +| **leadership**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.sh b/tests/results/test/44_4disabled_calcultion_follower_index.sh index c0f884702..df5c3c541 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test/44_4disabled_calcultion_follower_index.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leadership +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/44_4leadership_mandatory.adoc b/tests/results/test/44_4leadership_mandatory.adoc index 5cf012d8c..17d40bf68 100644 --- a/tests/results/test/44_4leadership_mandatory.adoc +++ b/tests/results/test/44_4leadership_mandatory.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/44_4leadership_mandatory.gitlab.md b/tests/results/test/44_4leadership_mandatory.gitlab.md index 1a16d231c..37ba0e673 100644 --- a/tests/results/test/44_4leadership_mandatory.gitlab.md +++ b/tests/results/test/44_4leadership_mandatory.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`basic` - - +
**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/44_4leadership_mandatory.html b/tests/results/test/44_4leadership_mandatory.html index 999530343..2bd6b6da9 100644 --- a/tests/results/test/44_4leadership_mandatory.html +++ b/tests/results/test/44_4leadership_mandatory.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/44_4leadership_mandatory.md b/tests/results/test/44_4leadership_mandatory.md index abd5583b8..76209815e 100644 --- a/tests/results/test/44_4leadership_mandatory.md +++ b/tests/results/test/44_4leadership_mandatory.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`basic` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4leadership_mandatory.sh b/tests/results/test/44_4leadership_mandatory.sh index 389ca003d..1e112a40f 100644 --- a/tests/results/test/44_4leadership_mandatory.sh +++ b/tests/results/test/44_4leadership_mandatory.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/44_4leadership_mandatory_follower.adoc b/tests/results/test/44_4leadership_mandatory_follower.adoc index 2a60a6e2f..410bf3718 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.adoc +++ b/tests/results/test/44_4leadership_mandatory_follower.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md index 7a65c7849..43592e04f 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md +++ b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md @@ -1,11 +1,7 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`basic` - - +
**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/44_4leadership_mandatory_follower.html b/tests/results/test/44_4leadership_mandatory_follower.html index f6b88d20b..fdf19b74f 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.html +++ b/tests/results/test/44_4leadership_mandatory_follower.html @@ -1,9 +1,9 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/44_4leadership_mandatory_follower.md b/tests/results/test/44_4leadership_mandatory_follower.md index 2a7058cbe..ddf27fea7 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.md +++ b/tests/results/test/44_4leadership_mandatory_follower.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`basic` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4leadership_mandatory_follower.sh b/tests/results/test/44_4leadership_mandatory_follower.sh index 4df8880d7..3dc941da5 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.sh +++ b/tests/results/test/44_4leadership_mandatory_follower.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.adoc b/tests/results/test/44_5leadership_leader_hidden_calculation.adoc index c6efe36ba..e0ea7ef97 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.adoc +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.adoc @@ -11,11 +11,11 @@ A condition. + == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` `__hidden__` 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 d83530257..2c6cf3e86 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md @@ -4,12 +4,8 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`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.html b/tests/results/test/44_5leadership_leader_hidden_calculation.html index 060ff8d06..f29ee805b 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.html +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.html @@ -9,10 +9,10 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic hidden Hidden: if condition is no diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.md b/tests/results/test/44_5leadership_leader_hidden_calculation.md index 2dce26790..209ec83cb 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.md @@ -4,13 +4,11 @@ # A leadership -This family contains lists of variable blocks -**leader** -`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_5leadership_leader_hidden_calculation.sh b/tests/results/test/44_5leadership_leader_hidden_calculation.sh index da57794f4..35fccb1c2 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.sh +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.sh @@ -9,20 +9,15 @@ A leadership -This family contains lists of variable blocks - - - 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.adoc b/tests/results/test/44_6leadership_follower_disabled_calculation.adoc index 433b09552..f8cc9b3b2 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.adoc +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.adoc @@ -11,11 +11,11 @@ A condition. + == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] 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 44fc3b00f..cfbf48163 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md @@ -4,12 +4,8 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
`basic` - - +
**leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.html b/tests/results/test/44_6leadership_follower_disabled_calculation.html index a8a8ebd3d..1ea278cbe 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.html +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.html @@ -9,10 +9,10 @@

A leadership

-This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.md b/tests/results/test/44_6leadership_follower_disabled_calculation.md index bcc49de71..e698793cc 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.md @@ -4,11 +4,11 @@ # A leadership -This family contains lists of variable blocks -**leader** -`basic` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.sh b/tests/results/test/44_6leadership_follower_disabled_calculation.sh index fdab02bbc..d5ef40587 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.sh @@ -9,17 +9,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_0family_dynamic.adoc b/tests/results/test/60_0family_dynamic.adoc index d161e1fee..7c3f0721a 100644 --- a/tests/results/test/60_0family_dynamic.adoc +++ b/tests/results/test/60_0family_dynamic.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic.gitlab.md b/tests/results/test/60_0family_dynamic.gitlab.md index 023448441..3b9ce3e5b 100644 --- a/tests/results/test/60_0family_dynamic.gitlab.md +++ b/tests/results/test/60_0family_dynamic.gitlab.md @@ -4,12 +4,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
**dyn*val2***
`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.html b/tests/results/test/60_0family_dynamic.html index c0f958510..fc447fdcb 100644 --- a/tests/results/test/60_0family_dynamic.html +++ b/tests/results/test/60_0family_dynamic.html @@ -10,10 +10,10 @@

A dynamic family

-This family builds families dynamically - dynval1
dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic.md b/tests/results/test/60_0family_dynamic.md index 5db35298a..f60cbe5ae 100644 --- a/tests/results/test/60_0family_dynamic.md +++ b/tests/results/test/60_0family_dynamic.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
**dyn*val2*** -`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.sh b/tests/results/test/60_0family_dynamic.sh index 7c4a917ca..e21022fa3 100644 --- a/tests/results/test/60_0family_dynamic.sh +++ b/tests/results/test/60_0family_dynamic.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_1_1.adoc index 1af51d389..fcd0eae69 100644 --- a/tests/results/test/60_0family_dynamic_1_1.adoc +++ b/tests/results/test/60_0family_dynamic_1_1.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" 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 614fd00b6..9ada911ef 100644 --- a/tests/results/test/60_0family_dynamic_1_1.gitlab.md +++ b/tests/results/test/60_0family_dynamic_1_1.gitlab.md @@ -4,12 +4,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
**dyn*val2***
`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.html b/tests/results/test/60_0family_dynamic_1_1.html index 301f93ea4..15cfcea26 100644 --- a/tests/results/test/60_0family_dynamic_1_1.html +++ b/tests/results/test/60_0family_dynamic_1_1.html @@ -10,10 +10,10 @@

A dynamic family

-This family builds families dynamically - dynval1
dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_1_1.md b/tests/results/test/60_0family_dynamic_1_1.md index 859a1976f..7653351af 100644 --- a/tests/results/test/60_0family_dynamic_1_1.md +++ b/tests/results/test/60_0family_dynamic_1_1.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
**dyn*val2*** -`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.sh b/tests/results/test/60_0family_dynamic_1_1.sh index 8bcc1631c..8311a7147 100644 --- a/tests/results/test/60_0family_dynamic_1_1.sh +++ b/tests/results/test/60_0family_dynamic_1_1.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_1_1_empty.adoc index 79ca2d095..29c0acda8 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.adoc +++ b/tests/results/test/60_0family_dynamic_1_1_empty.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" 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 1c7aa78e9..37432ed86 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 @@ -4,12 +4,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
**dyn*val2***
`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.html b/tests/results/test/60_0family_dynamic_1_1_empty.html index 0b1021d20..8e3a28b4f 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.html +++ b/tests/results/test/60_0family_dynamic_1_1_empty.html @@ -10,10 +10,10 @@

A dynamic family

-This family builds families dynamically - dynval1
dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var" 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 cfc4fa179..98ee1aaf9 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.md +++ b/tests/results/test/60_0family_dynamic_1_1_empty.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
**dyn*val2*** -`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.sh b/tests/results/test/60_0family_dynamic_1_1_empty.sh index 1121b2f5e..900b12567 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test/60_0family_dynamic_1_1_empty.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_empty.adoc index 04bb0f2e3..1a55ed3fc 100644 --- a/tests/results/test/60_0family_dynamic_empty.adoc +++ b/tests/results/test/60_0family_dynamic_empty.adoc @@ -10,11 +10,11 @@ A suffix variable. == A dynamic family -This family builds families dynamically - **dyn__example__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_empty.gitlab.md b/tests/results/test/60_0family_dynamic_empty.gitlab.md index ff8bac5e5..299050a40 100644 --- a/tests/results/test/60_0family_dynamic_empty.gitlab.md +++ b/tests/results/test/60_0family_dynamic_empty.gitlab.md @@ -4,12 +4,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*example***
`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.html b/tests/results/test/60_0family_dynamic_empty.html index 27e055ed8..2af53c9bb 100644 --- a/tests/results/test/60_0family_dynamic_empty.html +++ b/tests/results/test/60_0family_dynamic_empty.html @@ -9,10 +9,10 @@

A dynamic family

-This family builds families dynamically - dynexample +This family builds families dynamically. + basic Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_empty.md b/tests/results/test/60_0family_dynamic_empty.md index 8816d0d1d..4c3c99a94 100644 --- a/tests/results/test/60_0family_dynamic_empty.md +++ b/tests/results/test/60_0family_dynamic_empty.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*example*** -`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_empty.sh b/tests/results/test/60_0family_dynamic_empty.sh index 6ce6d3ce2..d85fa7bc7 100644 --- a/tests/results/test/60_0family_dynamic_empty.sh +++ b/tests/results/test/60_0family_dynamic_empty.sh @@ -10,20 +10,15 @@ A dynamic family -This family builds families dynamically - - - dynexample +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.adoc b/tests/results/test/60_0family_dynamic_forbidden_char.adoc index b0ea5afa5..43c89c539 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.adoc +++ b/tests/results/test/60_0family_dynamic_forbidden_char.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val_1__** + **dyn__val_2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" 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 fadfd59ca..01795f797 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md +++ b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md @@ -4,12 +4,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val_1***
**dyn*val_2***
`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.html b/tests/results/test/60_0family_dynamic_forbidden_char.html index 14e0e6900..936aad9ec 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.html +++ b/tests/results/test/60_0family_dynamic_forbidden_char.html @@ -10,10 +10,10 @@

A dynamic family

-This family builds families dynamically - dynval_1
dynval_2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.md b/tests/results/test/60_0family_dynamic_forbidden_char.md index 4012edf3c..172c00981 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.md +++ b/tests/results/test/60_0family_dynamic_forbidden_char.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val_1***
**dyn*val_2*** -`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_forbidden_char.sh b/tests/results/test/60_0family_dynamic_forbidden_char.sh index d65e0e23a..0ad197b68 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test/60_0family_dynamic_forbidden_char.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval_1 dynval_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.adoc b/tests/results/test/60_0family_dynamic_no_description.adoc index 061cccd97..0f8153f13 100644 --- a/tests/results/test/60_0family_dynamic_no_description.adoc +++ b/tests/results/test/60_0family_dynamic_no_description.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" 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 3dcfb76bd..2105542ef 100644 --- a/tests/results/test/60_0family_dynamic_no_description.gitlab.md +++ b/tests/results/test/60_0family_dynamic_no_description.gitlab.md @@ -4,12 +4,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
**dyn*val2***
`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.html b/tests/results/test/60_0family_dynamic_no_description.html index 57a508d03..c32f7bd86 100644 --- a/tests/results/test/60_0family_dynamic_no_description.html +++ b/tests/results/test/60_0family_dynamic_no_description.html @@ -10,10 +10,10 @@

A dynamic family

-This family builds families dynamically - dynval1
dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_no_description.md b/tests/results/test/60_0family_dynamic_no_description.md index 007d77169..21673da11 100644 --- a/tests/results/test/60_0family_dynamic_no_description.md +++ b/tests/results/test/60_0family_dynamic_no_description.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
**dyn*val2*** -`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.sh b/tests/results/test/60_0family_dynamic_no_description.sh index a32695c0a..fe5e93f93 100644 --- a/tests/results/test/60_0family_dynamic_no_description.sh +++ b/tests/results/test/60_0family_dynamic_no_description.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_no_description_empty.adoc index 658358f9e..44d0f0013 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.adoc +++ b/tests/results/test/60_0family_dynamic_no_description_empty.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md index 02392b33a..0af374b2f 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 @@ -4,12 +4,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
**dyn*val2***
`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.html b/tests/results/test/60_0family_dynamic_no_description_empty.html index 54cafc56b..a5873cf8d 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.html +++ b/tests/results/test/60_0family_dynamic_no_description_empty.html @@ -10,10 +10,10 @@

A dynamic family

-This family builds families dynamically - dynval1
dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var" 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 c9e8bc99a..e16e57f84 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.md +++ b/tests/results/test/60_0family_dynamic_no_description_empty.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
**dyn*val2*** -`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.sh b/tests/results/test/60_0family_dynamic_no_description_empty.sh index f771dd076..ff205be10 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test/60_0family_dynamic_no_description_empty.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_source_hidden.adoc index 483e3f33d..56a5d7656 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.adoc +++ b/tests/results/test/60_0family_dynamic_source_hidden.adoc @@ -1,11 +1,11 @@ == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: (from an undocumented variable) 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 6ac4c9d06..79b65f2e0 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md +++ b/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md @@ -1,11 +1,7 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
**dyn*val2***
`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.html b/tests/results/test/60_0family_dynamic_source_hidden.html index d9cc64e6b..bcf01d6a1 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.html +++ b/tests/results/test/60_0family_dynamic_source_hidden.html @@ -1,9 +1,9 @@

A dynamic family

-This family builds families dynamically - dynval1
dynval2 +This family builds families dynamically. + basic Identifiers: (from an undocumented variable)
  • val1
  • diff --git a/tests/results/test/60_0family_dynamic_source_hidden.md b/tests/results/test/60_0family_dynamic_source_hidden.md index 967b3cfc3..9c81184b6 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.md +++ b/tests/results/test/60_0family_dynamic_source_hidden.md @@ -1,12 +1,10 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
    **dyn*val2*** -`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_source_hidden.sh b/tests/results/test/60_0family_dynamic_source_hidden.sh index d44765c3d..1c4b8329e 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test/60_0family_dynamic_source_hidden.sh @@ -3,23 +3,18 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_static.adoc index d01f15577..248ea0126 100644 --- a/tests/results/test/60_0family_dynamic_static.adoc +++ b/tests/results/test/60_0family_dynamic_static.adoc @@ -1,11 +1,11 @@ == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: diff --git a/tests/results/test/60_0family_dynamic_static.gitlab.md b/tests/results/test/60_0family_dynamic_static.gitlab.md index dd111b3a8..402d14c14 100644 --- a/tests/results/test/60_0family_dynamic_static.gitlab.md +++ b/tests/results/test/60_0family_dynamic_static.gitlab.md @@ -1,11 +1,7 @@
    A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
    **dyn*val2***
    `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.html b/tests/results/test/60_0family_dynamic_static.html index 8b055f955..8a7c4c2b2 100644 --- a/tests/results/test/60_0family_dynamic_static.html +++ b/tests/results/test/60_0family_dynamic_static.html @@ -1,9 +1,9 @@

    A dynamic family

    -This family builds families dynamically - dynval1
    dynval2 +This family builds families dynamically. + basic Identifiers:
    • val1
    • diff --git a/tests/results/test/60_0family_dynamic_static.md b/tests/results/test/60_0family_dynamic_static.md index 8c4bade66..8d0ba1c1e 100644 --- a/tests/results/test/60_0family_dynamic_static.md +++ b/tests/results/test/60_0family_dynamic_static.md @@ -1,12 +1,10 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
      **dyn*val2*** -`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_static.sh b/tests/results/test/60_0family_dynamic_static.sh index 7e8c9dad6..b5f1bc803 100644 --- a/tests/results/test/60_0family_dynamic_static.sh +++ b/tests/results/test/60_0family_dynamic_static.sh @@ -3,23 +3,18 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_0family_dynamic_test.adoc b/tests/results/test/60_0family_dynamic_test.adoc index afc337299..cce27657c 100644 --- a/tests/results/test/60_0family_dynamic_test.adoc +++ b/tests/results/test/60_0family_dynamic_test.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_test.gitlab.md b/tests/results/test/60_0family_dynamic_test.gitlab.md index 563955d63..dc0379de3 100644 --- a/tests/results/test/60_0family_dynamic_test.gitlab.md +++ b/tests/results/test/60_0family_dynamic_test.gitlab.md @@ -4,12 +4,8 @@
      A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
      **dyn*val2***
      `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.html b/tests/results/test/60_0family_dynamic_test.html index 1c3b6e14c..b5f36bb29 100644 --- a/tests/results/test/60_0family_dynamic_test.html +++ b/tests/results/test/60_0family_dynamic_test.html @@ -10,10 +10,10 @@

      A dynamic family

      -This family builds families dynamically - dynval1
      dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_test.md b/tests/results/test/60_0family_dynamic_test.md index 363a4ca49..0fd043054 100644 --- a/tests/results/test/60_0family_dynamic_test.md +++ b/tests/results/test/60_0family_dynamic_test.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
      **dyn*val2*** -`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_test.sh b/tests/results/test/60_0family_dynamic_test.sh index 34c0f207f..70c4ee6dc 100644 --- a/tests/results/test/60_0family_dynamic_test.sh +++ b/tests/results/test/60_0family_dynamic_test.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_upper_char.adoc index 7e9ffa7d5..3b69dc847 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.adoc +++ b/tests/results/test/60_0family_dynamic_upper_char.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" 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 beae847b5..c406de7aa 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md +++ b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md @@ -4,12 +4,8 @@
      A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
      **dyn*val2***
      `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.html b/tests/results/test/60_0family_dynamic_upper_char.html index dbc90e27c..7a0042616 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.html +++ b/tests/results/test/60_0family_dynamic_upper_char.html @@ -10,10 +10,10 @@

      A dynamic family

      -This family builds families dynamically - dynval1
      dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_upper_char.md b/tests/results/test/60_0family_dynamic_upper_char.md index 633a933bb..732878620 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.md +++ b/tests/results/test/60_0family_dynamic_upper_char.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
      **dyn*val2*** -`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.sh b/tests/results/test/60_0family_dynamic_upper_char.sh index 58b580e53..a53bddaa3 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.sh +++ b/tests/results/test/60_0family_dynamic_upper_char.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_variable_empty.adoc index 3c8782e98..638d73a05 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.adoc +++ b/tests/results/test/60_0family_dynamic_variable_empty.adoc @@ -10,11 +10,11 @@ A suffix variable. == A dynamic family -This family builds families dynamically - **dyn__example__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" 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 b5ee48768..bed45852a 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md @@ -4,12 +4,8 @@
      A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*example***
      `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.html b/tests/results/test/60_0family_dynamic_variable_empty.html index 3bae13029..538d8aeb3 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.html +++ b/tests/results/test/60_0family_dynamic_variable_empty.html @@ -9,10 +9,10 @@

      A dynamic family

      -This family builds families dynamically - dynexample +This family builds families dynamically. + standard Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_variable_empty.md b/tests/results/test/60_0family_dynamic_variable_empty.md index ea4e30470..00f182080 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.md +++ b/tests/results/test/60_0family_dynamic_variable_empty.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*example*** -`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_empty.sh b/tests/results/test/60_0family_dynamic_variable_empty.sh index 363a02f04..8ab99b671 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test/60_0family_dynamic_variable_empty.sh @@ -10,20 +10,15 @@ A dynamic family -This family builds families dynamically - - - dynexample +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.adoc b/tests/results/test/60_0family_dynamic_variable_optional.adoc index bd76b3bc4..920de9293 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.adoc +++ b/tests/results/test/60_0family_dynamic_variable_optional.adoc @@ -1,11 +1,11 @@ == A dynamic family -This family builds families dynamically - **dyn__a__** + **dyn__b__** +This family builds families dynamically. + `standard` **Identifiers**: 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 783f84edb..e375031bf 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md @@ -1,11 +1,7 @@
      A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*a***
      **dyn*b***
      `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.html b/tests/results/test/60_0family_dynamic_variable_optional.html index 6bd3331a6..6d12cc352 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.html +++ b/tests/results/test/60_0family_dynamic_variable_optional.html @@ -1,9 +1,9 @@

      A dynamic family

      -This family builds families dynamically - dyna
      dynb +This family builds families dynamically. + standard Identifiers:
      • a
      • diff --git a/tests/results/test/60_0family_dynamic_variable_optional.md b/tests/results/test/60_0family_dynamic_variable_optional.md index 8192d79b3..d0d8334e6 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.md +++ b/tests/results/test/60_0family_dynamic_variable_optional.md @@ -1,12 +1,10 @@ # A dynamic family -This family builds families dynamically -**dyn*a***
        **dyn*b*** -`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_optional.sh b/tests/results/test/60_0family_dynamic_variable_optional.sh index 011b2ed75..c6b0180c0 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.sh +++ b/tests/results/test/60_0family_dynamic_variable_optional.sh @@ -3,23 +3,18 @@ A dynamic family -This family builds families dynamically - - - dyna dynb +This family builds families dynamically.  standard  - Identifiers: - a - b - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.adoc b/tests/results/test/60_0family_dynamic_variable_suffix.adoc index 34bf39f83..843bbd86d 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.adoc +++ b/tests/results/test/60_0family_dynamic_variable_suffix.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" 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 1da3c0177..00a83276a 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md @@ -4,12 +4,8 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_0family_dynamic_variable_suffix.html index 3bbceb5dd..729b60ea0 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.html +++ b/tests/results/test/60_0family_dynamic_variable_suffix.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.md b/tests/results/test/60_0family_dynamic_variable_suffix.md index c7c62780a..a8fac5282 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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.sh b/tests/results/test/60_0family_dynamic_variable_suffix.sh index 160f0f8ee..f99a80612 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test/60_0family_dynamic_variable_suffix.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc index c09941958..aaeb0eb9f 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" 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 bfd13e5e7..5af6dd412 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 @@ -4,12 +4,8 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_0family_dynamic_variable_suffix_empty.html index e10568c52..c81bb3074 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.html +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" 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 726fb395f..e7aa51020 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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.sh b/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh index 03d23e73c..852feca0d 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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 6b27065ab..368d8bf07 100644 --- a/tests/results/test/60_0family_mode.gitlab.md +++ b/tests/results/test/60_0family_mode.gitlab.md @@ -1,9 +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 6a01d1b2c..3bd64f29f 100644 --- a/tests/results/test/60_0family_mode.md +++ b/tests/results/test/60_0family_mode.md @@ -1,8 +1,10 @@ # A family -**family** -`basic` + +| Informations | +|:------------| +| **family**
        `basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_mode.sh b/tests/results/test/60_0family_mode.sh index 29b9b3226..5105a0310 100644 --- a/tests/results/test/60_0family_mode.sh +++ b/tests/results/test/60_0family_mode.sh @@ -3,14 +3,11 @@ A family - family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_1family_dynamic_jinja.adoc b/tests/results/test/60_1family_dynamic_jinja.adoc index 4db2a2df3..297540320 100644 --- a/tests/results/test/60_1family_dynamic_jinja.adoc +++ b/tests/results/test/60_1family_dynamic_jinja.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__1__** + **dyn__2__** +This family builds families dynamically. + `standard` **Identifiers**: index of suffix value diff --git a/tests/results/test/60_1family_dynamic_jinja.gitlab.md b/tests/results/test/60_1family_dynamic_jinja.gitlab.md index e83225986..ebf813d1f 100644 --- a/tests/results/test/60_1family_dynamic_jinja.gitlab.md +++ b/tests/results/test/60_1family_dynamic_jinja.gitlab.md @@ -4,12 +4,8 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*1***
        **dyn*2***
        `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.html b/tests/results/test/60_1family_dynamic_jinja.html index 24eb9fe8a..4ba807597 100644 --- a/tests/results/test/60_1family_dynamic_jinja.html +++ b/tests/results/test/60_1family_dynamic_jinja.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dyn1
        dyn2 +This family builds families dynamically. + standard Identifiers: index of suffix value diff --git a/tests/results/test/60_1family_dynamic_jinja.md b/tests/results/test/60_1family_dynamic_jinja.md index 6e232e135..114866400 100644 --- a/tests/results/test/60_1family_dynamic_jinja.md +++ b/tests/results/test/60_1family_dynamic_jinja.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*1***
        **dyn*2*** -`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_1family_dynamic_jinja.sh b/tests/results/test/60_1family_dynamic_jinja.sh index a0eaef400..53b4aafa5 100644 --- a/tests/results/test/60_1family_dynamic_jinja.sh +++ b/tests/results/test/60_1family_dynamic_jinja.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dyn1 dyn2 +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.adoc b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.adoc index 4ffed7f52..82a5678be 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.adoc +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var1" 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 56883c48d..23ab579eb 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 @@ -4,19 +4,13 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.html index 7016387d8..34008409e 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.html +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var1" 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 21290f959..4cac6db43 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,19 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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 -**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.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh index 602e3363f..4bd90d5c6 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh @@ -11,35 +11,27 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "var1" - A family - dynval1.family dynval2.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.adoc b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.adoc index 7bb34c1b1..0bc4bd318 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.adoc +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.adoc @@ -14,12 +14,12 @@ A identifier variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md index c015c0f42..bb1173df8 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 @@ -4,19 +4,13 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.html index b032842a6..a4ce14176 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.html +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" 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 feba28a25..e125bc2ae 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,19 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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 -**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.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh index 7f0bd0f39..9ea9da296 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -11,35 +11,27 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "var" - A family inside dynamic family - dynval1.family dynval2.family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc index 034d237d6..cef06fbe4 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc @@ -14,12 +14,12 @@ A identifier variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md index 486895956..8c3444ef8 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 @@ -4,19 +4,13 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.html index 55f6f2ad2..81347f07b 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.html +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" 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 eae9b38be..b6b0ea5f1 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,19 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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 -**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.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index f0f807fa2..e57063a02 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -11,35 +11,27 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "var" - A family inside dynamic family - dynval1.family dynval2.family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.adoc b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.adoc index 1cefc4a96..015f23d16 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.adoc +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var1" 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 4560f96fa..24996bbb7 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 @@ -4,19 +4,13 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.html index a987326bd..9a46f03b2 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.html +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var1" 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 d4c8651f4..3097299eb 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,19 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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 -**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_empty.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh index 6d97cc80c..1c3a92033 100644 --- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -11,35 +11,27 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "var1" - A family - dynval1.family dynval2.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_2family_dynamic_outside_calc.adoc b/tests/results/test/60_2family_dynamic_outside_calc.adoc index 6e2eaa1f3..6dd336903 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.adoc +++ b/tests/results/test/60_2family_dynamic_outside_calc.adoc @@ -14,12 +14,12 @@ A suffx variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var1" 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 010c8a21d..e381c841c 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md +++ b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md @@ -4,12 +4,8 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_2family_dynamic_outside_calc.html index 8702b0c3b..8b72662a9 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.html +++ b/tests/results/test/60_2family_dynamic_outside_calc.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var1" diff --git a/tests/results/test/60_2family_dynamic_outside_calc.md b/tests/results/test/60_2family_dynamic_outside_calc.md index 25516de43..cd3271f20 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.md +++ b/tests/results/test/60_2family_dynamic_outside_calc.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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.sh b/tests/results/test/60_2family_dynamic_outside_calc.sh index 4e2a73a75..2ccf4c9b5 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test/60_2family_dynamic_outside_calc.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc index 04be379e1..e6fd4f066 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc @@ -14,12 +14,12 @@ A suffx variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var1" 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 a50e59095..c21efa356 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 @@ -4,12 +4,8 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_2family_dynamic_outside_calc_empty.html index abe1b047c..040bf620e 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.html +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var1" 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 83f8d9d4a..2ae343059 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.md +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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.sh b/tests/results/test/60_2family_dynamic_outside_calc_empty.sh index ab72c4193..c48d8ba75 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_5family_dynamic_calc_suffix2.adoc index 3a9944b34..e59c72966 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md index ffaf49581..d72926b39 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md @@ -4,12 +4,8 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_5family_dynamic_calc_suffix2.html index 82217e702..cfbd96f22 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.md b/tests/results/test/60_5family_dynamic_calc_suffix2.md index d56b6db7d..6ecdaac90 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_calc_suffix2.sh index 0047b0832..4bb8d80be 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc index 467aa8e6a..8aec2c3f5 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" 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 9c146a940..f55a57ba4 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 @@ -4,12 +4,8 @@
        A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html index 9bbbe1ecd..a028890c8 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html @@ -10,10 +10,10 @@

        A dynamic family

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" 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 fb6228b9a..d01ece1f7 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
        **dyn*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh index 06f742ddb..a7c860818 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.adoc index 5d2273b4f..4d097b8b5 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.adoc @@ -1,11 +1,11 @@ == dyn__val1__ or dyn__val2__ -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: 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 dc17ffb47..b2abfadcc 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,11 +1,7 @@
        dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
        **dyn*val2***
        `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.html b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.html index 256721165..b121311db 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.html @@ -1,9 +1,9 @@

        dyn<i>val1</i> or dyn<i>val2</i>

        -This family builds families dynamically - dynval1
        dynval2 +This family builds families dynamically. + basic Identifiers:
        • val1
        • 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 e2842cd21..f615074fd 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md @@ -1,12 +1,10 @@ # dyn*val1* or dyn*val2* -This family builds families dynamically -**dyn*val1***
          **dyn*val2*** -`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_disabled.sh b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh index 0364b1cdf..87cf98c90 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh @@ -3,23 +3,18 @@ dynval1 or dynval2 -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc b/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc index f0effe58c..82358cfde 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc @@ -14,12 +14,12 @@ A identifier variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" 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 98bd75cf3..3ea3afa49 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 @@ -4,12 +4,8 @@
          A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
          **dyn*val2***
          `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.html b/tests/results/test/60_5family_dynamic_calc_suffix_param.html index 27873c2cb..3bf770575 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.html @@ -10,10 +10,10 @@

          A dynamic family

          -This family builds families dynamically - dynval1
          dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" 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 c4cac6e5f..d0ae74acd 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
          **dyn*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_calc_suffix_param.sh index f4125f73d..8f3cccd62 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.adoc index e23c823f6..79f137338 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.adoc @@ -14,12 +14,12 @@ A identifier variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" 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 1788f8836..e26c16b4d 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 @@ -4,12 +4,8 @@
          A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
          **dyn*val2***
          `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.html b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.html index aeaeee0e4..0bfe799d3 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.html @@ -10,10 +10,10 @@

          A dynamic family

          -This family builds families dynamically - dynval1
          dynval2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" 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 5a0331e8f..0a4c05927 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,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
          **dyn*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh index 582cde3cc..f7e0698f6 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_5family_dynamic_calc_variable.adoc index 5cde14c79..d2f2b89fc 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.adoc +++ b/tests/results/test/60_5family_dynamic_calc_variable.adoc @@ -14,12 +14,12 @@ A suffix variable. + == dyn__val1__ or dyn__val2__ -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var1" 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 336507fe4..e066ac703 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md +++ b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md @@ -4,12 +4,8 @@
          dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
          **dyn*val2***
          `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.html b/tests/results/test/60_5family_dynamic_calc_variable.html index c225adf6e..988a72ee5 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.html +++ b/tests/results/test/60_5family_dynamic_calc_variable.html @@ -10,10 +10,10 @@

          dyn<i>val1</i> or dyn<i>val2</i>

          -This family builds families dynamically - dynval1
          dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var1" diff --git a/tests/results/test/60_5family_dynamic_calc_variable.md b/tests/results/test/60_5family_dynamic_calc_variable.md index d0f7c06fc..778df4a12 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.md +++ b/tests/results/test/60_5family_dynamic_calc_variable.md @@ -4,13 +4,11 @@ # dyn*val1* or dyn*val2* -This family builds families dynamically -**dyn*val1***
          **dyn*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_calc_variable.sh index 20ff3f803..99101ad51 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test/60_5family_dynamic_calc_variable.sh @@ -11,21 +11,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc index a5b642c72..b49535162 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc @@ -1,11 +1,11 @@ == A dynamic famify for __val1__ or A dynamic famify for __val2__ -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: 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 eee92fbda..75683bafd 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,11 +1,7 @@
          A dynamic famify for *val1* or A dynamic famify for *val2* -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
          **dyn*val2***
          `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.html b/tests/results/test/60_5family_dynamic_calc_variable_disabled.html index 4b5c943ad..ee237eb5e 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.html +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.html @@ -1,9 +1,9 @@

          A dynamic famify for <i>val1</i> or A dynamic famify for <i>val2</i>

          -This family builds families dynamically - dynval1
          dynval2 +This family builds families dynamically. + basic Identifiers:
          • val1
          • 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 5300530d0..d6337b832 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.md +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.md @@ -1,12 +1,10 @@ # A dynamic famify for *val1* or A dynamic famify for *val2* -This family builds families dynamically -**dyn*val1***
            **dyn*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh index 4d3c22fba..86a7a0947 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh @@ -3,23 +3,18 @@ A dynamic famify for val1 or A dynamic famify for val2 -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc index 0b2f23c53..80279307b 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc @@ -1,11 +1,11 @@ == A dynamic famify for __val1__ or A dynamic famify for __val2__ -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: 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 71cc31c13..a3dd67a2a 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,11 +1,7 @@
            A dynamic famify for *val1* or A dynamic famify for *val2* -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
            **dyn*val2***
            `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.html b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.html index 770d82c31..2c61b8831 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.html +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.html @@ -1,9 +1,9 @@

            A dynamic famify for <i>val1</i> or A dynamic famify for <i>val2</i>

            -This family builds families dynamically - dynval1
            dynval2 +This family builds families dynamically. + basic Identifiers:
            • val1
            • 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 c1f05b039..8a0030177 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,12 +1,10 @@ # A dynamic famify for *val1* or A dynamic famify for *val2* -This family builds families dynamically -**dyn*val1***
              **dyn*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh index 65751201a..e38f9e74c 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -3,23 +3,18 @@ A dynamic famify for val1 or A dynamic famify for val2 -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc index 816412250..f7a190e29 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc @@ -14,12 +14,12 @@ A suffix variable. + == dyn__val1__ or dyn__val2__ -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var1" 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 3ce771d44..299fcaca2 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 @@ -4,12 +4,8 @@
              dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
              **dyn*val2***
              `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.html b/tests/results/test/60_5family_dynamic_calc_variable_empty.html index e09168836..e45134442 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.html +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.html @@ -10,10 +10,10 @@

              dyn<i>val1</i> or dyn<i>val2</i>

              -This family builds families dynamically - dynval1
              dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var1" 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 0f1f598d1..c11474bcc 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.md @@ -4,13 +4,11 @@ # dyn*val1* or dyn*val2* -This family builds families dynamically -**dyn*val1***
              **dyn*val2*** -`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_empty.sh b/tests/results/test/60_5family_dynamic_calc_variable_empty.sh index b4dfd3739..682144a0c 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.sh @@ -11,21 +11,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/60_5family_dynamic_hidden_suffix.adoc index 76e5def84..a5d7cec32 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.adoc +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.adoc @@ -1,11 +1,11 @@ == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `standard` `__hidden__` 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 668f16bda..8efbbc80a 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md @@ -1,11 +1,7 @@
              A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
              **dyn*val2***
              `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 | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -14,9 +10,7 @@ This family builds families dynamically
              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.html b/tests/results/test/60_5family_dynamic_hidden_suffix.html index e81dac71d..a9b1258ff 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.html +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.html @@ -1,9 +1,9 @@

              A dynamic family

              -This family builds families dynamically - dynval1
              dynval2 +This family builds families dynamically. + standard hidden Hidden: if suffix == 'val2' diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.md b/tests/results/test/60_5family_dynamic_hidden_suffix.md index 8dc1b9dba..4ba998d40 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.md @@ -1,14 +1,10 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
              **dyn*val2*** -`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                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -16,9 +12,11 @@ This family builds families dynamically ## A family -**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_hidden_suffix.sh b/tests/results/test/60_5family_dynamic_hidden_suffix.sh index 107e68ae6..c884666db 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.sh @@ -3,26 +3,20 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  standard   hidden  - Hidden: if suffix == 'val2' - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -35,15 +29,12 @@ This family builds families dynamically A family - dynval1.family dynval2.family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc index fafaf8acd..ea152a49b 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc @@ -14,12 +14,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn___val1__** + **dyn___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md index 8023c0c98..006843495 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 @@ -4,12 +4,8 @@
              A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn_*val1***
              **dyn_*val2***
              `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.html b/tests/results/test/60_5family_dynamic_variable_outside_suffix.html index fc08600ea..69d4e5cf2 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.html +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.html @@ -10,10 +10,10 @@

              A dynamic family

              -This family builds families dynamically - dyn_val1
              dyn_val2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" 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 e197766c4..bb3dd4d10 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.md +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn_*val1***
              **dyn_*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh index 8b04161cd..716b898ed 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - 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.adoc b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc index 9377a3aa2..b7618d0f8 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc @@ -14,12 +14,12 @@ Asuffix variable. + == A dynamic family -This family builds families dynamically - **dyn___val1__** + **dyn___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "var" diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md index f1acd105a..283d83ee8 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 @@ -4,12 +4,8 @@
              A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn_*val1***
              **dyn_*val2***
              `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.html b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.html index 6f9b911a6..bd97e4245 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.html +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.html @@ -10,10 +10,10 @@

              A dynamic family

              -This family builds families dynamically - dyn_val1
              dyn_val2 +This family builds families dynamically. + standard Identifiers: the value of the variable "var" 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 46704355b..48a971295 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,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn_*val1***
              **dyn_*val2*** -`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.sh b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh index 9fb15611c..8b86f8560 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -11,21 +11,16 @@ A dynamic family -This family builds families dynamically - - - 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.adoc b/tests/results/test/60_6family_dynamic_leadership.adoc index f8ff2ed36..b2b24b1ba 100644 --- a/tests/results/test/60_6family_dynamic_leadership.adoc +++ b/tests/results/test/60_6family_dynamic_leadership.adoc @@ -14,24 +14,24 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" === A leadership -This family contains lists of variable blocks - **dyn__val1__.leadership** + **dyn__val2__.leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/60_6family_dynamic_leadership.gitlab.md b/tests/results/test/60_6family_dynamic_leadership.gitlab.md index 46db0c742..c3a09949c 100644 --- a/tests/results/test/60_6family_dynamic_leadership.gitlab.md +++ b/tests/results/test/60_6family_dynamic_leadership.gitlab.md @@ -4,21 +4,13 @@
              A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
              **dyn*val2***
              `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 -This family contains lists of variable blocks - >>> [!note] Informations -**dyn*val1*.leadership**
              **dyn*val2*.leadership**
              `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.html b/tests/results/test/60_6family_dynamic_leadership.html index fec5a9372..73aaef980 100644 --- a/tests/results/test/60_6family_dynamic_leadership.html +++ b/tests/results/test/60_6family_dynamic_leadership.html @@ -10,20 +10,20 @@

              A dynamic family

              -This family builds families dynamically - dynval1
              dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var"

              A leadership

              -This family contains lists of variable blocks - dynval1.leadership
              dynval2.leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/60_6family_dynamic_leadership.md b/tests/results/test/60_6family_dynamic_leadership.md index 293018070..7cac59e2d 100644 --- a/tests/results/test/60_6family_dynamic_leadership.md +++ b/tests/results/test/60_6family_dynamic_leadership.md @@ -4,21 +4,19 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
**dyn*val2*** -`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 -This family contains lists of variable blocks -**dyn*val1*.leadership**
**dyn*val2*.leadership** -`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.sh b/tests/results/test/60_6family_dynamic_leadership.sh index 124ee3049..b7ae9ab00 100644 --- a/tests/results/test/60_6family_dynamic_leadership.sh +++ b/tests/results/test/60_6family_dynamic_leadership.sh @@ -11,38 +11,29 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "var" - A leadership -This family contains lists of variable blocks - - - dynval1.leadership dynval2.leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.adoc b/tests/results/test/60_6family_dynamic_leadership_empty.adoc index dd58dac8b..f59ca6399 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.adoc +++ b/tests/results/test/60_6family_dynamic_leadership_empty.adoc @@ -14,24 +14,24 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "var" === A leadership -This family contains lists of variable blocks - **dyn__val1__.leadership** + **dyn__val2__.leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] 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 8075e9197..dfe0eaee2 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md +++ b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md @@ -4,21 +4,13 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
**dyn*val2***
`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 -This family contains lists of variable blocks - >>> [!note] Informations -**dyn*val1*.leadership**
**dyn*val2*.leadership**
`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.html b/tests/results/test/60_6family_dynamic_leadership_empty.html index 242d37bf6..801f63b4c 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.html +++ b/tests/results/test/60_6family_dynamic_leadership_empty.html @@ -10,20 +10,20 @@

A dynamic family

-This family builds families dynamically - dynval1
dynval2 +This family builds families dynamically. + basic Identifiers: the value of the variable "var"

A leadership

-This family contains lists of variable blocks - dynval1.leadership
dynval2.leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.md b/tests/results/test/60_6family_dynamic_leadership_empty.md index f315ade76..33ee81b07 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test/60_6family_dynamic_leadership_empty.md @@ -4,21 +4,19 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
**dyn*val2*** -`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 -This family contains lists of variable blocks -**dyn*val1*.leadership**
**dyn*val2*.leadership** -`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.sh b/tests/results/test/60_6family_dynamic_leadership_empty.sh index aa48d1222..3e56172cf 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test/60_6family_dynamic_leadership_empty.sh @@ -11,38 +11,29 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "var" - A leadership -This family contains lists of variable blocks - - - dynval1.leadership dynval2.leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/60_9family_dynamic_calc_both.adoc b/tests/results/test/60_9family_dynamic_calc_both.adoc index d06800ede..b21286d0a 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.adoc +++ b/tests/results/test/60_9family_dynamic_calc_both.adoc @@ -11,12 +11,12 @@ A suffix variable. + == A dynamic family -This family builds families dynamically - **dyn__val1__** + **dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: 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 00b9f47f8..e26a8fc4b 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md +++ b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md @@ -4,12 +4,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**dyn*val1***
**dyn*val2***
`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.html b/tests/results/test/60_9family_dynamic_calc_both.html index 8bb0460b9..502eba81c 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.html +++ b/tests/results/test/60_9family_dynamic_calc_both.html @@ -9,10 +9,10 @@

A dynamic family

-This family builds families dynamically - dynval1
dynval2 +This family builds families dynamically. + basic Identifiers:
  • val1
  • diff --git a/tests/results/test/60_9family_dynamic_calc_both.md b/tests/results/test/60_9family_dynamic_calc_both.md index 1be12f4db..d6d6df307 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.md +++ b/tests/results/test/60_9family_dynamic_calc_both.md @@ -4,13 +4,11 @@ # A dynamic family -This family builds families dynamically -**dyn*val1***
    **dyn*val2*** -`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/60_9family_dynamic_calc_both.sh b/tests/results/test/60_9family_dynamic_calc_both.sh index 0da2e4712..e11ce0ad9 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.sh +++ b/tests/results/test/60_9family_dynamic_calc_both.sh @@ -9,23 +9,18 @@ A dynamic family -This family builds families dynamically - - - dynval1 dynval2 +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.adoc b/tests/results/test/68_0family_leadership_mode.adoc index 558fdee13..564210fb0 100644 --- a/tests/results/test/68_0family_leadership_mode.adoc +++ b/tests/results/test/68_0family_leadership_mode.adoc @@ -1,10 +1,10 @@ == A leadership -This family contains lists of variable blocks - **leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test/68_0family_leadership_mode.gitlab.md b/tests/results/test/68_0family_leadership_mode.gitlab.md index d762995b2..a555e1855 100644 --- a/tests/results/test/68_0family_leadership_mode.gitlab.md +++ b/tests/results/test/68_0family_leadership_mode.gitlab.md @@ -1,11 +1,7 @@
    A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**leader**
    `basic` - - +
    **leader**
    This family contains lists of variable blocks.
    `basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test/68_0family_leadership_mode.html b/tests/results/test/68_0family_leadership_mode.html index 4a9436547..3c8edcd17 100644 --- a/tests/results/test/68_0family_leadership_mode.html +++ b/tests/results/test/68_0family_leadership_mode.html @@ -1,9 +1,9 @@

    A leadership

    -This family contains lists of variable blocks - leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test/68_0family_leadership_mode.md b/tests/results/test/68_0family_leadership_mode.md index 7705ce929..870946735 100644 --- a/tests/results/test/68_0family_leadership_mode.md +++ b/tests/results/test/68_0family_leadership_mode.md @@ -1,10 +1,10 @@ # A leadership -This family contains lists of variable blocks -**leader** -`basic` +| Informations | +|:------------| +| **leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                        | Description                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/68_0family_leadership_mode.sh b/tests/results/test/68_0family_leadership_mode.sh index 334efd0f1..c8bc2de39 100644 --- a/tests/results/test/68_0family_leadership_mode.sh +++ b/tests/results/test/68_0family_leadership_mode.sh @@ -3,17 +3,13 @@ A leadership -This family contains lists of variable blocks - - - leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test/warnings_01_6string_multi_length b/tests/results/test/warnings_01_6string_multi_length new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/results/test/warnings_01_6string_multi_length @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/results/test_examples/01_6string_multi_length.adoc b/tests/results/test_examples/01_6string_multi_length.adoc new file mode 100644 index 000000000..d0e872019 --- /dev/null +++ b/tests/results/test_examples/01_6string_multi_length.adoc @@ -0,0 +1,13 @@ +== Example with all variables modifiable + +[,yaml] +---- +--- +var1: # The variable + - val1 + - val2 + - val3 +var2: # The variable + - val4 + - val5 +---- diff --git a/tests/results/test_examples/01_6string_multi_length.gitlab.md b/tests/results/test_examples/01_6string_multi_length.gitlab.md new file mode 100644 index 000000000..01d011d05 --- /dev/null +++ b/tests/results/test_examples/01_6string_multi_length.gitlab.md @@ -0,0 +1,14 @@ +
Example with all variables modifiable + +```yaml +--- +var1: # The variable + - val1 + - val2 + - val3 +var2: # The variable + - val4 + - val5 +``` +
+ diff --git a/tests/results/test_examples/01_6string_multi_length.html b/tests/results/test_examples/01_6string_multi_length.html new file mode 100644 index 000000000..48eac0fd5 --- /dev/null +++ b/tests/results/test_examples/01_6string_multi_length.html @@ -0,0 +1,9 @@ +

Example with all variables modifiable

+ +
var1:                         # The variable
+  - val1
+  - val2
+  - val3
+var2:                         # The variable
+  - val4
+  - val5
\ No newline at end of file diff --git a/tests/results/test_examples/01_6string_multi_length.md b/tests/results/test_examples/01_6string_multi_length.md new file mode 100644 index 000000000..07b538983 --- /dev/null +++ b/tests/results/test_examples/01_6string_multi_length.md @@ -0,0 +1,12 @@ +# Example with all variables modifiable + +```yaml +--- +var1: + - val1 + - val2 + - val3 +var2: + - val4 + - val5 +``` diff --git a/tests/results/test_examples/01_6string_multi_length.sh b/tests/results/test_examples/01_6string_multi_length.sh new file mode 100644 index 000000000..d24e38f5a --- /dev/null +++ b/tests/results/test_examples/01_6string_multi_length.sh @@ -0,0 +1,14 @@ + + +Example with all variables modifiable + + +---  +var1: # The variable  + - val1  + - val2  + - val3  +var2: # The variable  + - val4  + - val5  + diff --git a/tests/results/test_examples/warnings_01_6string_multi_length b/tests/results/test_examples/warnings_01_6string_multi_length new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/results/test_examples/warnings_01_6string_multi_length @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/results/test_examples_comment/01_6string_multi_length.adoc b/tests/results/test_examples_comment/01_6string_multi_length.adoc new file mode 100644 index 000000000..d0e872019 --- /dev/null +++ b/tests/results/test_examples_comment/01_6string_multi_length.adoc @@ -0,0 +1,13 @@ +== Example with all variables modifiable + +[,yaml] +---- +--- +var1: # The variable + - val1 + - val2 + - val3 +var2: # The variable + - val4 + - val5 +---- diff --git a/tests/results/test_examples_comment/01_6string_multi_length.gitlab.md b/tests/results/test_examples_comment/01_6string_multi_length.gitlab.md new file mode 100644 index 000000000..01d011d05 --- /dev/null +++ b/tests/results/test_examples_comment/01_6string_multi_length.gitlab.md @@ -0,0 +1,14 @@ +
Example with all variables modifiable + +```yaml +--- +var1: # The variable + - val1 + - val2 + - val3 +var2: # The variable + - val4 + - val5 +``` +
+ diff --git a/tests/results/test_examples_comment/01_6string_multi_length.html b/tests/results/test_examples_comment/01_6string_multi_length.html new file mode 100644 index 000000000..48eac0fd5 --- /dev/null +++ b/tests/results/test_examples_comment/01_6string_multi_length.html @@ -0,0 +1,9 @@ +

Example with all variables modifiable

+ +
var1:                         # The variable
+  - val1
+  - val2
+  - val3
+var2:                         # The variable
+  - val4
+  - val5
\ No newline at end of file diff --git a/tests/results/test_examples_comment/01_6string_multi_length.md b/tests/results/test_examples_comment/01_6string_multi_length.md new file mode 100644 index 000000000..944097f53 --- /dev/null +++ b/tests/results/test_examples_comment/01_6string_multi_length.md @@ -0,0 +1,12 @@ +# Example with all variables modifiable + +```yaml +--- +var1: # The variable + - val1 + - val2 + - val3 +var2: # The variable + - val4 + - val5 +``` diff --git a/tests/results/test_examples_comment/01_6string_multi_length.sh b/tests/results/test_examples_comment/01_6string_multi_length.sh new file mode 100644 index 000000000..d24e38f5a --- /dev/null +++ b/tests/results/test_examples_comment/01_6string_multi_length.sh @@ -0,0 +1,14 @@ + + +Example with all variables modifiable + + +---  +var1: # The variable  + - val1  + - val2  + - val3  +var2: # The variable  + - val4  + - val5  + diff --git a/tests/results/test_examples_comment/warnings_01_6string_multi_length b/tests/results/test_examples_comment/warnings_01_6string_multi_length new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/results/test_examples_comment/warnings_01_6string_multi_length @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/results/test_namespace/00_0version_underscore.adoc b/tests/results/test_namespace/00_0version_underscore.adoc index 2e91e6122..112e2149e 100644 --- a/tests/results/test_namespace/00_0version_underscore.adoc +++ b/tests/results/test_namespace/00_0version_underscore.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_0version_underscore.gitlab.md b/tests/results/test_namespace/00_0version_underscore.gitlab.md index 87bc69574..6ccdbbd60 100644 --- a/tests/results/test_namespace/00_0version_underscore.gitlab.md +++ b/tests/results/test_namespace/00_0version_underscore.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_0version_underscore.html b/tests/results/test_namespace/00_0version_underscore.html index e8657af7b..e26d6bf0a 100644 --- a/tests/results/test_namespace/00_0version_underscore.html +++ b/tests/results/test_namespace/00_0version_underscore.html @@ -4,6 +4,8 @@ basic + +
diff --git a/tests/results/test_namespace/00_0version_underscore.md b/tests/results/test_namespace/00_0version_underscore.md index 7c43dbc5e..4e75da024 100644 --- a/tests/results/test_namespace/00_0version_underscore.md +++ b/tests/results/test_namespace/00_0version_underscore.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.version**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/00_0version_underscore.sh b/tests/results/test_namespace/00_0version_underscore.sh index e0e4930c1..1f0b162fc 100644 --- a/tests/results/test_namespace/00_0version_underscore.sh +++ b/tests/results/test_namespace/00_0version_underscore.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_1empty_variable.adoc b/tests/results/test_namespace/00_1empty_variable.adoc index 554bb1e8f..62681438e 100644 --- a/tests/results/test_namespace/00_1empty_variable.adoc +++ b/tests/results/test_namespace/00_1empty_variable.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 3f9806acc..1fe2b2c32 100644 --- a/tests/results/test_namespace/00_1empty_variable.gitlab.md +++ b/tests/results/test_namespace/00_1empty_variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_1empty_variable.html b/tests/results/test_namespace/00_1empty_variable.html index 22443a9d5..5c6907a14 100644 --- a/tests/results/test_namespace/00_1empty_variable.html +++ b/tests/results/test_namespace/00_1empty_variable.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_1empty_variable.md b/tests/results/test_namespace/00_1empty_variable.md index 6b2b001c3..78ba97dca 100644 --- a/tests/results/test_namespace/00_1empty_variable.md +++ b/tests/results/test_namespace/00_1empty_variable.md @@ -4,6 +4,8 @@ `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_1empty_variable.sh b/tests/results/test_namespace/00_1empty_variable.sh index 79fad4f5e..c054ba47c 100644 --- a/tests/results/test_namespace/00_1empty_variable.sh +++ b/tests/results/test_namespace/00_1empty_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_2default_calculated.adoc b/tests/results/test_namespace/00_2default_calculated.adoc index 7310be0b0..d1e0522a6 100644 --- a/tests/results/test_namespace/00_2default_calculated.adoc +++ b/tests/results/test_namespace/00_2default_calculated.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_2default_calculated.gitlab.md b/tests/results/test_namespace/00_2default_calculated.gitlab.md index 3604c5c19..94f65f0ae 100644 --- a/tests/results/test_namespace/00_2default_calculated.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_2default_calculated.html b/tests/results/test_namespace/00_2default_calculated.html index f0fa46eae..7625c6c70 100644 --- a/tests/results/test_namespace/00_2default_calculated.html +++ b/tests/results/test_namespace/00_2default_calculated.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_2default_calculated.md b/tests/results/test_namespace/00_2default_calculated.md index 0ee8f1fef..8d3f5cddf 100644 --- a/tests/results/test_namespace/00_2default_calculated.md +++ b/tests/results/test_namespace/00_2default_calculated.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no | diff --git a/tests/results/test_namespace/00_2default_calculated.sh b/tests/results/test_namespace/00_2default_calculated.sh index f22dd0ce2..db6256d18 100644 --- a/tests/results/test_namespace/00_2default_calculated.sh +++ b/tests/results/test_namespace/00_2default_calculated.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_2default_calculated_multi.adoc b/tests/results/test_namespace/00_2default_calculated_multi.adoc index 834fbeaa8..88a5a7210 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.adoc +++ b/tests/results/test_namespace/00_2default_calculated_multi.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 ab95653ad..bfbd93040 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_2default_calculated_multi.html b/tests/results/test_namespace/00_2default_calculated_multi.html index 934adaa0b..a8f97803c 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.html +++ b/tests/results/test_namespace/00_2default_calculated_multi.html @@ -4,6 +4,8 @@ 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 8b0ffa818..fb419116c 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.md +++ b/tests/results/test_namespace/00_2default_calculated_multi.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.
**Default**:
- no
- yes
- maybe | diff --git a/tests/results/test_namespace/00_2default_calculated_multi.sh b/tests/results/test_namespace/00_2default_calculated_multi.sh index dc7e46894..c114f11bc 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.sh +++ b/tests/results/test_namespace/00_2default_calculated_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.adoc b/tests/results/test_namespace/00_2default_calculated_params_permissive.adoc index e2da46e38..ce54d1227 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.adoc +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 c79a0b6f0..7ff43e105 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.html b/tests/results/test_namespace/00_2default_calculated_params_permissive.html index ac7188973..0eb19d78c 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.html +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.html @@ -4,6 +4,8 @@ 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 8fc70295c..e5540bb81 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.md +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: depends on a calculation | diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace/00_2default_calculated_params_permissive.sh index 8247b936d..c218f7b40 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_2default_calculated_variable.adoc b/tests/results/test_namespace/00_2default_calculated_variable.adoc index 415d366ff..d7eaebd71 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.adoc +++ b/tests/results/test_namespace/00_2default_calculated_variable.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 4968790c7..5ff9dcb10 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_2default_calculated_variable.html b/tests/results/test_namespace/00_2default_calculated_variable.html index 213128858..0871226f9 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.html +++ b/tests/results/test_namespace/00_2default_calculated_variable.html @@ -4,6 +4,8 @@ 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 2a11254e1..55db42715 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.md +++ b/tests/results/test_namespace/00_2default_calculated_variable.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                           | Description                                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.
**Validator**: the domain name can be an IP | diff --git a/tests/results/test_namespace/00_2default_calculated_variable.sh b/tests/results/test_namespace/00_2default_calculated_variable.sh index 2bfb98523..f46deac4a 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.sh +++ b/tests/results/test_namespace/00_2default_calculated_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.adoc b/tests/results/test_namespace/00_2default_calculated_variable_description.adoc index a9d5e78a9..73ceebc7f 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.adoc +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 5838b2ca3..7e8c8f88b 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.html b/tests/results/test_namespace/00_2default_calculated_variable_description.html index 63a204747..9ae9faf53 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.html +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.html @@ -4,6 +4,8 @@ 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 695d1e7c4..466ab19d7 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.sh b/tests/results/test_namespace/00_2default_calculated_variable_description.sh index 403045de7..d79e55e62 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.sh +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.adoc b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.adoc index b54b2cb53..cbb53b3ed 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.adoc +++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 9c1392e2e..a0fd540da 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,18 +1,15 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> -| Variable | Description | -|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| -| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | -| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | +| Variable | Description | +|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | +| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. |
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.html b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.html index 8eebd1aaa..fde5621d6 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.html +++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.html @@ -4,6 +4,8 @@ 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 e22746444..5d4f8c9c7 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 @@ -4,12 +4,11 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | | **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh index b78e91e63..559c85ca9 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc b/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc index ea380eb8b..8c2ff0dba 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 478941517..5ad985a0b 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.html b/tests/results/test_namespace/00_2default_calculated_variable_transitive.html index f36bf7321..6b14f86c7 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.html +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.html @@ -4,6 +4,8 @@ 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 a53579c1d..9e7575c55 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                           | Description                                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.
**Validator**: the domain name can be an IP | diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh index 15d0b91e4..e78b13354 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_4load_subfolder.adoc b/tests/results/test_namespace/00_4load_subfolder.adoc index 6f66382c5..c86f16aca 100644 --- a/tests/results/test_namespace/00_4load_subfolder.adoc +++ b/tests/results/test_namespace/00_4load_subfolder.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 e3cff29d8..f41d68075 100644 --- a/tests/results/test_namespace/00_4load_subfolder.gitlab.md +++ b/tests/results/test_namespace/00_4load_subfolder.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_4load_subfolder.html b/tests/results/test_namespace/00_4load_subfolder.html index 27296fe7e..141b826d5 100644 --- a/tests/results/test_namespace/00_4load_subfolder.html +++ b/tests/results/test_namespace/00_4load_subfolder.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_4load_subfolder.md b/tests/results/test_namespace/00_4load_subfolder.md index 93a9ec146..3a6ff75ae 100644 --- a/tests/results/test_namespace/00_4load_subfolder.md +++ b/tests/results/test_namespace/00_4load_subfolder.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/00_4load_subfolder.sh b/tests/results/test_namespace/00_4load_subfolder.sh index 8e26f9051..e0ab8a689 100644 --- a/tests/results/test_namespace/00_4load_subfolder.sh +++ b/tests/results/test_namespace/00_4load_subfolder.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_5load_notype.adoc b/tests/results/test_namespace/00_5load_notype.adoc index 74ced6fe7..4b53d8b79 100644 --- a/tests/results/test_namespace/00_5load_notype.adoc +++ b/tests/results/test_namespace/00_5load_notype.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 55f1519d3..436a52da9 100644 --- a/tests/results/test_namespace/00_5load_notype.gitlab.md +++ b/tests/results/test_namespace/00_5load_notype.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_5load_notype.html b/tests/results/test_namespace/00_5load_notype.html index 85ad4ab3a..94fa1740c 100644 --- a/tests/results/test_namespace/00_5load_notype.html +++ b/tests/results/test_namespace/00_5load_notype.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_5load_notype.md b/tests/results/test_namespace/00_5load_notype.md index d649f2d78..791713091 100644 --- a/tests/results/test_namespace/00_5load_notype.md +++ b/tests/results/test_namespace/00_5load_notype.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.without_type**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: non | diff --git a/tests/results/test_namespace/00_5load_notype.sh b/tests/results/test_namespace/00_5load_notype.sh index e822daa84..4c9a901ec 100644 --- a/tests/results/test_namespace/00_5load_notype.sh +++ b/tests/results/test_namespace/00_5load_notype.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6boolean.adoc b/tests/results/test_namespace/00_6boolean.adoc index c13fe4a34..0e62527f8 100644 --- a/tests/results/test_namespace/00_6boolean.adoc +++ b/tests/results/test_namespace/00_6boolean.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6boolean.gitlab.md b/tests/results/test_namespace/00_6boolean.gitlab.md index f93ebe62c..024458874 100644 --- a/tests/results/test_namespace/00_6boolean.gitlab.md +++ b/tests/results/test_namespace/00_6boolean.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6boolean.html b/tests/results/test_namespace/00_6boolean.html index bd4282528..44693d85d 100644 --- a/tests/results/test_namespace/00_6boolean.html +++ b/tests/results/test_namespace/00_6boolean.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6boolean.md b/tests/results/test_namespace/00_6boolean.md index 1fb185129..6b854d92f 100644 --- a/tests/results/test_namespace/00_6boolean.md +++ b/tests/results/test_namespace/00_6boolean.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.
**Default**: true | diff --git a/tests/results/test_namespace/00_6boolean.sh b/tests/results/test_namespace/00_6boolean.sh index 21039598f..682c72984 100644 --- a/tests/results/test_namespace/00_6boolean.sh +++ b/tests/results/test_namespace/00_6boolean.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.adoc b/tests/results/test_namespace/00_6boolean_no_mandatory.adoc index 4f35d1fcd..4b2d6ca23 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.adoc +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 0c6856c85..c2c4f02b0 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.html b/tests/results/test_namespace/00_6boolean_no_mandatory.html index 99cb5ad14..98f1c515b 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.html +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.html @@ -4,6 +4,8 @@ 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 623a9260f..529fc8508 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.md +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                        | Description                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: true | diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.sh b/tests/results/test_namespace/00_6boolean_no_mandatory.sh index 2e5c91c9d..eb6dfddef 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.sh +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6choice.adoc b/tests/results/test_namespace/00_6choice.adoc index a3f76f30e..64dc0d4d0 100644 --- a/tests/results/test_namespace/00_6choice.adoc +++ b/tests/results/test_namespace/00_6choice.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6choice.gitlab.md b/tests/results/test_namespace/00_6choice.gitlab.md index 080337dfc..5073ed886 100644 --- a/tests/results/test_namespace/00_6choice.gitlab.md +++ b/tests/results/test_namespace/00_6choice.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_6choice.html b/tests/results/test_namespace/00_6choice.html index 46a350cb1..8ae6adbc9 100644 --- a/tests/results/test_namespace/00_6choice.html +++ b/tests/results/test_namespace/00_6choice.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_6choice.md b/tests/results/test_namespace/00_6choice.md index ba9223772..5a11dba9f 100644 --- a/tests/results/test_namespace/00_6choice.md +++ b/tests/results/test_namespace/00_6choice.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
- a
- b
- c | diff --git a/tests/results/test_namespace/00_6choice.sh b/tests/results/test_namespace/00_6choice.sh index f8c352c94..6aa925623 100644 --- a/tests/results/test_namespace/00_6choice.sh +++ b/tests/results/test_namespace/00_6choice.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6choice_calculation.adoc b/tests/results/test_namespace/00_6choice_calculation.adoc index b98176c38..41ae351ec 100644 --- a/tests/results/test_namespace/00_6choice_calculation.adoc +++ b/tests/results/test_namespace/00_6choice_calculation.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 5885a7cd2..2a9b08882 100644 --- a/tests/results/test_namespace/00_6choice_calculation.gitlab.md +++ b/tests/results/test_namespace/00_6choice_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6choice_calculation.html b/tests/results/test_namespace/00_6choice_calculation.html index cb66bdc2b..4ab3ebbd1 100644 --- a/tests/results/test_namespace/00_6choice_calculation.html +++ b/tests/results/test_namespace/00_6choice_calculation.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6choice_calculation.md b/tests/results/test_namespace/00_6choice_calculation.md index 54dc5561f..83f847641 100644 --- a/tests/results/test_namespace/00_6choice_calculation.md +++ b/tests/results/test_namespace/00_6choice_calculation.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**: choices is 0 to 9
**Default**: 9 | diff --git a/tests/results/test_namespace/00_6choice_calculation.sh b/tests/results/test_namespace/00_6choice_calculation.sh index b2a04ded5..9b04c04ca 100644 --- a/tests/results/test_namespace/00_6choice_calculation.sh +++ b/tests/results/test_namespace/00_6choice_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6choice_link.adoc b/tests/results/test_namespace/00_6choice_link.adoc index e989cead7..017cf0887 100644 --- a/tests/results/test_namespace/00_6choice_link.adoc +++ b/tests/results/test_namespace/00_6choice_link.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 404236aad..3408af655 100644 --- a/tests/results/test_namespace/00_6choice_link.gitlab.md +++ b/tests/results/test_namespace/00_6choice_link.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_6choice_link.html b/tests/results/test_namespace/00_6choice_link.html index e95ca7e77..08f7884a1 100644 --- a/tests/results/test_namespace/00_6choice_link.html +++ b/tests/results/test_namespace/00_6choice_link.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_6choice_link.md b/tests/results/test_namespace/00_6choice_link.md index 7f8450cbc..985305be9 100644 --- a/tests/results/test_namespace/00_6choice_link.md +++ b/tests/results/test_namespace/00_6choice_link.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
- a
- b
- c | diff --git a/tests/results/test_namespace/00_6choice_link.sh b/tests/results/test_namespace/00_6choice_link.sh index b778072e7..4a94dc298 100644 --- a/tests/results/test_namespace/00_6choice_link.sh +++ b/tests/results/test_namespace/00_6choice_link.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6choice_variable.adoc b/tests/results/test_namespace/00_6choice_variable.adoc index 794faef19..9ba24129f 100644 --- a/tests/results/test_namespace/00_6choice_variable.adoc +++ b/tests/results/test_namespace/00_6choice_variable.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 dc852ac92..0700f0ab6 100644 --- a/tests/results/test_namespace/00_6choice_variable.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6choice_variable.html b/tests/results/test_namespace/00_6choice_variable.html index d4fbdea65..c253c5543 100644 --- a/tests/results/test_namespace/00_6choice_variable.html +++ b/tests/results/test_namespace/00_6choice_variable.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6choice_variable.md b/tests/results/test_namespace/00_6choice_variable.md index c21428c01..cd77f791f 100644 --- a/tests/results/test_namespace/00_6choice_variable.md +++ b/tests/results/test_namespace/00_6choice_variable.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**:
- a
- b
- c | diff --git a/tests/results/test_namespace/00_6choice_variable.sh b/tests/results/test_namespace/00_6choice_variable.sh index e46fd4601..e04bf5a06 100644 --- a/tests/results/test_namespace/00_6choice_variable.sh +++ b/tests/results/test_namespace/00_6choice_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6choice_variable_link.adoc b/tests/results/test_namespace/00_6choice_variable_link.adoc index 0b19477cb..46842a282 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.adoc +++ b/tests/results/test_namespace/00_6choice_variable_link.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 e082a0a0a..36286db0f 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6choice_variable_link.html b/tests/results/test_namespace/00_6choice_variable_link.html index 3c63f5757..0df36f281 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.html +++ b/tests/results/test_namespace/00_6choice_variable_link.html @@ -4,6 +4,8 @@ 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 30074f2e3..75cc504fb 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.md +++ b/tests/results/test_namespace/00_6choice_variable_link.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**:
- a
- b
- c | diff --git a/tests/results/test_namespace/00_6choice_variable_link.sh b/tests/results/test_namespace/00_6choice_variable_link.sh index 4fe22381a..b723b9070 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.sh +++ b/tests/results/test_namespace/00_6choice_variable_link.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6choice_variable_link2.adoc b/tests/results/test_namespace/00_6choice_variable_link2.adoc index dce997186..649657e80 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.adoc +++ b/tests/results/test_namespace/00_6choice_variable_link2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 73a1fc966..71f823296 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -13,9 +13,7 @@
family >>> [!note] Informations -**rougail.family**
`standard` - - +
**rougail.family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_variable_link2.html b/tests/results/test_namespace/00_6choice_variable_link2.html index 3a6e8a64f..30d1e73e9 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.html +++ b/tests/results/test_namespace/00_6choice_variable_link2.html @@ -4,6 +4,8 @@ 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 344db7013..77e9e599c 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.md +++ b/tests/results/test_namespace/00_6choice_variable_link2.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**:
- a
- b
- c | @@ -11,9 +13,11 @@ ## family -**rougail.family** -`standard` + +| Informations | +|:------------| +| **rougail.family**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_variable_link2.sh b/tests/results/test_namespace/00_6choice_variable_link2.sh index ca51f4160..4fb734309 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.sh +++ b/tests/results/test_namespace/00_6choice_variable_link2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -31,14 +33,11 @@ family - rougail.family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6custom.adoc b/tests/results/test_namespace/00_6custom.adoc index 5dd136171..04b63158a 100644 --- a/tests/results/test_namespace/00_6custom.adoc +++ b/tests/results/test_namespace/00_6custom.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6custom.gitlab.md b/tests/results/test_namespace/00_6custom.gitlab.md index 6a85bb376..88b02883d 100644 --- a/tests/results/test_namespace/00_6custom.gitlab.md +++ b/tests/results/test_namespace/00_6custom.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_6custom.html b/tests/results/test_namespace/00_6custom.html index 34ef5031e..23b870d7f 100644 --- a/tests/results/test_namespace/00_6custom.html +++ b/tests/results/test_namespace/00_6custom.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_6custom.md b/tests/results/test_namespace/00_6custom.md index 9010a489f..1b7f8b9ba 100644 --- a/tests/results/test_namespace/00_6custom.md +++ b/tests/results/test_namespace/00_6custom.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.custom1**
[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. | diff --git a/tests/results/test_namespace/00_6custom.sh b/tests/results/test_namespace/00_6custom.sh index e31dc8bbd..cf8451245 100644 --- a/tests/results/test_namespace/00_6custom.sh +++ b/tests/results/test_namespace/00_6custom.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6domainname.adoc b/tests/results/test_namespace/00_6domainname.adoc index b2b7e5e41..4264add66 100644 --- a/tests/results/test_namespace/00_6domainname.adoc +++ b/tests/results/test_namespace/00_6domainname.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6domainname.gitlab.md b/tests/results/test_namespace/00_6domainname.gitlab.md index cf273c239..e7244189a 100644 --- a/tests/results/test_namespace/00_6domainname.gitlab.md +++ b/tests/results/test_namespace/00_6domainname.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6domainname.html b/tests/results/test_namespace/00_6domainname.html index 10db3b97a..680005fa6 100644 --- a/tests/results/test_namespace/00_6domainname.html +++ b/tests/results/test_namespace/00_6domainname.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6domainname.md b/tests/results/test_namespace/00_6domainname.md index 90a8e4290..3a4fe8ba0 100644 --- a/tests/results/test_namespace/00_6domainname.md +++ b/tests/results/test_namespace/00_6domainname.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                       | Description                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A domain name variable.
**Default**: my.domain.name | diff --git a/tests/results/test_namespace/00_6domainname.sh b/tests/results/test_namespace/00_6domainname.sh index 7174345a7..c3579219f 100644 --- a/tests/results/test_namespace/00_6domainname.sh +++ b/tests/results/test_namespace/00_6domainname.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6domainname_params.adoc b/tests/results/test_namespace/00_6domainname_params.adoc index 86d7e6061..1119e02ed 100644 --- a/tests/results/test_namespace/00_6domainname_params.adoc +++ b/tests/results/test_namespace/00_6domainname_params.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 9b3e79146..b43a8274a 100644 --- a/tests/results/test_namespace/00_6domainname_params.gitlab.md +++ b/tests/results/test_namespace/00_6domainname_params.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6domainname_params.html b/tests/results/test_namespace/00_6domainname_params.html index 33b563a2d..3febac9f3 100644 --- a/tests/results/test_namespace/00_6domainname_params.html +++ b/tests/results/test_namespace/00_6domainname_params.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6domainname_params.md b/tests/results/test_namespace/00_6domainname_params.md index 430f9eefb..808448ff5 100644 --- a/tests/results/test_namespace/00_6domainname_params.md +++ b/tests/results/test_namespace/00_6domainname_params.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                       | Description                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A domain name variable.
**Validator**: the domain name can be an IP
**Default**: my.domain.name | diff --git a/tests/results/test_namespace/00_6domainname_params.sh b/tests/results/test_namespace/00_6domainname_params.sh index 6b5d771f7..4ac9525ef 100644 --- a/tests/results/test_namespace/00_6domainname_params.sh +++ b/tests/results/test_namespace/00_6domainname_params.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6float.adoc b/tests/results/test_namespace/00_6float.adoc index e45130656..f84605a85 100644 --- a/tests/results/test_namespace/00_6float.adoc +++ b/tests/results/test_namespace/00_6float.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6float.gitlab.md b/tests/results/test_namespace/00_6float.gitlab.md index 280b8b98c..4049d730c 100644 --- a/tests/results/test_namespace/00_6float.gitlab.md +++ b/tests/results/test_namespace/00_6float.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6float.html b/tests/results/test_namespace/00_6float.html index 03039db7a..a38bdb092 100644 --- a/tests/results/test_namespace/00_6float.html +++ b/tests/results/test_namespace/00_6float.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6float.md b/tests/results/test_namespace/00_6float.md index c0a8eb55c..44caf69b6 100644 --- a/tests/results/test_namespace/00_6float.md +++ b/tests/results/test_namespace/00_6float.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                  | Description                                                                                               | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.
**Default**: 0.0 | diff --git a/tests/results/test_namespace/00_6float.sh b/tests/results/test_namespace/00_6float.sh index c1be90586..ffe01d8cc 100644 --- a/tests/results/test_namespace/00_6float.sh +++ b/tests/results/test_namespace/00_6float.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6integer.adoc b/tests/results/test_namespace/00_6integer.adoc index 33ba31741..97b9753e4 100644 --- a/tests/results/test_namespace/00_6integer.adoc +++ b/tests/results/test_namespace/00_6integer.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6integer.gitlab.md b/tests/results/test_namespace/00_6integer.gitlab.md index 50dfe1cf6..378582990 100644 --- a/tests/results/test_namespace/00_6integer.gitlab.md +++ b/tests/results/test_namespace/00_6integer.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6integer.html b/tests/results/test_namespace/00_6integer.html index 3dcac6103..857b8444d 100644 --- a/tests/results/test_namespace/00_6integer.html +++ b/tests/results/test_namespace/00_6integer.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6integer.md b/tests/results/test_namespace/00_6integer.md index 0d16c202a..a27715439 100644 --- a/tests/results/test_namespace/00_6integer.md +++ b/tests/results/test_namespace/00_6integer.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.
**Default**: 0 | diff --git a/tests/results/test_namespace/00_6integer.sh b/tests/results/test_namespace/00_6integer.sh index 1ba6af0e5..1bee9a831 100644 --- a/tests/results/test_namespace/00_6integer.sh +++ b/tests/results/test_namespace/00_6integer.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6ip.adoc b/tests/results/test_namespace/00_6ip.adoc index 88e0a5534..c6c50daa2 100644 --- a/tests/results/test_namespace/00_6ip.adoc +++ b/tests/results/test_namespace/00_6ip.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6ip.gitlab.md b/tests/results/test_namespace/00_6ip.gitlab.md index ece650768..df940bc2f 100644 --- a/tests/results/test_namespace/00_6ip.gitlab.md +++ b/tests/results/test_namespace/00_6ip.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6ip.html b/tests/results/test_namespace/00_6ip.html index 1c206447f..bcc3052c8 100644 --- a/tests/results/test_namespace/00_6ip.html +++ b/tests/results/test_namespace/00_6ip.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6ip.md b/tests/results/test_namespace/00_6ip.md index 67a96cdba..45aacaf6e 100644 --- a/tests/results/test_namespace/00_6ip.md +++ b/tests/results/test_namespace/00_6ip.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                 | Description                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP.
**Validator**: reserved IP are allowed
**Default**: 1.1.1.1 | diff --git a/tests/results/test_namespace/00_6ip.sh b/tests/results/test_namespace/00_6ip.sh index c71e474c0..d7d222684 100644 --- a/tests/results/test_namespace/00_6ip.sh +++ b/tests/results/test_namespace/00_6ip.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6network.adoc b/tests/results/test_namespace/00_6network.adoc index f2dbb9562..e4e12562a 100644 --- a/tests/results/test_namespace/00_6network.adoc +++ b/tests/results/test_namespace/00_6network.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6network.gitlab.md b/tests/results/test_namespace/00_6network.gitlab.md index a50cd7bda..9f1811cd9 100644 --- a/tests/results/test_namespace/00_6network.gitlab.md +++ b/tests/results/test_namespace/00_6network.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6network.html b/tests/results/test_namespace/00_6network.html index 71cb7a68d..b01551f56 100644 --- a/tests/results/test_namespace/00_6network.html +++ b/tests/results/test_namespace/00_6network.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6network.md b/tests/results/test_namespace/00_6network.md index bc5e874ce..7a64eb103 100644 --- a/tests/results/test_namespace/00_6network.md +++ b/tests/results/test_namespace/00_6network.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                         | Description                                                                                                      | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network.
**Default**: 1.1.1.0 | diff --git a/tests/results/test_namespace/00_6network.sh b/tests/results/test_namespace/00_6network.sh index c12b47a46..9e9dae872 100644 --- a/tests/results/test_namespace/00_6network.sh +++ b/tests/results/test_namespace/00_6network.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6number.adoc b/tests/results/test_namespace/00_6number.adoc index 33ba31741..97b9753e4 100644 --- a/tests/results/test_namespace/00_6number.adoc +++ b/tests/results/test_namespace/00_6number.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6number.gitlab.md b/tests/results/test_namespace/00_6number.gitlab.md index 50dfe1cf6..378582990 100644 --- a/tests/results/test_namespace/00_6number.gitlab.md +++ b/tests/results/test_namespace/00_6number.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6number.html b/tests/results/test_namespace/00_6number.html index 3dcac6103..857b8444d 100644 --- a/tests/results/test_namespace/00_6number.html +++ b/tests/results/test_namespace/00_6number.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6number.md b/tests/results/test_namespace/00_6number.md index 0d16c202a..a27715439 100644 --- a/tests/results/test_namespace/00_6number.md +++ b/tests/results/test_namespace/00_6number.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.
**Default**: 0 | diff --git a/tests/results/test_namespace/00_6number.sh b/tests/results/test_namespace/00_6number.sh index 1ba6af0e5..1bee9a831 100644 --- a/tests/results/test_namespace/00_6number.sh +++ b/tests/results/test_namespace/00_6number.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6port.adoc b/tests/results/test_namespace/00_6port.adoc index 09f58e662..5de4d4254 100644 --- a/tests/results/test_namespace/00_6port.adoc +++ b/tests/results/test_namespace/00_6port.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6port.gitlab.md b/tests/results/test_namespace/00_6port.gitlab.md index 667eb1cd8..73f94d341 100644 --- a/tests/results/test_namespace/00_6port.gitlab.md +++ b/tests/results/test_namespace/00_6port.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_6port.html b/tests/results/test_namespace/00_6port.html index e2590a039..c91f070de 100644 --- a/tests/results/test_namespace/00_6port.html +++ b/tests/results/test_namespace/00_6port.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_6port.md b/tests/results/test_namespace/00_6port.md index 6d29236e1..a9c506a5c 100644 --- a/tests/results/test_namespace/00_6port.md +++ b/tests/results/test_namespace/00_6port.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                 | Description                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable1**
[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.
**Validators**:
- well-known ports (1 to 1023) are allowed
- registred ports (1024 to 49151) are allowed
- private ports (greater than 49152) are allowed | diff --git a/tests/results/test_namespace/00_6port.sh b/tests/results/test_namespace/00_6port.sh index 8fee54878..8c659f2b0 100644 --- a/tests/results/test_namespace/00_6port.sh +++ b/tests/results/test_namespace/00_6port.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6regexp.adoc b/tests/results/test_namespace/00_6regexp.adoc index 39cb15ce0..8030e44b7 100644 --- a/tests/results/test_namespace/00_6regexp.adoc +++ b/tests/results/test_namespace/00_6regexp.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6regexp.gitlab.md b/tests/results/test_namespace/00_6regexp.gitlab.md index bcb86f48a..ee806750a 100644 --- a/tests/results/test_namespace/00_6regexp.gitlab.md +++ b/tests/results/test_namespace/00_6regexp.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6regexp.html b/tests/results/test_namespace/00_6regexp.html index c732fd036..4906db608 100644 --- a/tests/results/test_namespace/00_6regexp.html +++ b/tests/results/test_namespace/00_6regexp.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6regexp.md b/tests/results/test_namespace/00_6regexp.md index 5db76977a..6b2499df1 100644 --- a/tests/results/test_namespace/00_6regexp.md +++ b/tests/results/test_namespace/00_6regexp.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"
**Default**: #a1a1a1
**Examples**:
- #b1b1b1
- #b2b2b2 | diff --git a/tests/results/test_namespace/00_6regexp.sh b/tests/results/test_namespace/00_6regexp.sh index c42ec5cd6..ccb2f4045 100644 --- a/tests/results/test_namespace/00_6regexp.sh +++ b/tests/results/test_namespace/00_6regexp.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6regexp_link.adoc b/tests/results/test_namespace/00_6regexp_link.adoc index fd0a3b211..50fe78d28 100644 --- a/tests/results/test_namespace/00_6regexp_link.adoc +++ b/tests/results/test_namespace/00_6regexp_link.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 5debf40a7..8e954a217 100644 --- a/tests/results/test_namespace/00_6regexp_link.gitlab.md +++ b/tests/results/test_namespace/00_6regexp_link.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_6regexp_link.html b/tests/results/test_namespace/00_6regexp_link.html index cf8776118..335413cd6 100644 --- a/tests/results/test_namespace/00_6regexp_link.html +++ b/tests/results/test_namespace/00_6regexp_link.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_6regexp_link.md b/tests/results/test_namespace/00_6regexp_link.md index 60d827897..e2276d047 100644 --- a/tests/results/test_namespace/00_6regexp_link.md +++ b/tests/results/test_namespace/00_6regexp_link.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"
**Default**: #a1a1a1
**Examples**:
- #b1b1b1
- #b2b2b2 | diff --git a/tests/results/test_namespace/00_6regexp_link.sh b/tests/results/test_namespace/00_6regexp_link.sh index e471a5ad2..58755ba43 100644 --- a/tests/results/test_namespace/00_6regexp_link.sh +++ b/tests/results/test_namespace/00_6regexp_link.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6secret.adoc b/tests/results/test_namespace/00_6secret.adoc index ab2dea26a..e4367d290 100644 --- a/tests/results/test_namespace/00_6secret.adoc +++ b/tests/results/test_namespace/00_6secret.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6secret.gitlab.md b/tests/results/test_namespace/00_6secret.gitlab.md index 00966ebd0..6b7b9015d 100644 --- a/tests/results/test_namespace/00_6secret.gitlab.md +++ b/tests/results/test_namespace/00_6secret.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_6secret.html b/tests/results/test_namespace/00_6secret.html index 3de230363..fe962e7f8 100644 --- a/tests/results/test_namespace/00_6secret.html +++ b/tests/results/test_namespace/00_6secret.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_6secret.md b/tests/results/test_namespace/00_6secret.md index 2f867dcb0..7d4a637a5 100644 --- a/tests/results/test_namespace/00_6secret.md +++ b/tests/results/test_namespace/00_6secret.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.secret1**
[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. | diff --git a/tests/results/test_namespace/00_6secret.sh b/tests/results/test_namespace/00_6secret.sh index 110d755c2..a4c642d02 100644 --- a/tests/results/test_namespace/00_6secret.sh +++ b/tests/results/test_namespace/00_6secret.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6secret_param.adoc b/tests/results/test_namespace/00_6secret_param.adoc index 857e1cb07..d1d8c36f0 100644 --- a/tests/results/test_namespace/00_6secret_param.adoc +++ b/tests/results/test_namespace/00_6secret_param.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 7493789a2..a1814e1b6 100644 --- a/tests/results/test_namespace/00_6secret_param.gitlab.md +++ b/tests/results/test_namespace/00_6secret_param.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_6secret_param.html b/tests/results/test_namespace/00_6secret_param.html index 4b456b3c0..ba2d21709 100644 --- a/tests/results/test_namespace/00_6secret_param.html +++ b/tests/results/test_namespace/00_6secret_param.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_6secret_param.md b/tests/results/test_namespace/00_6secret_param.md index 79459cb70..6c5a87528 100644 --- a/tests/results/test_namespace/00_6secret_param.md +++ b/tests/results/test_namespace/00_6secret_param.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.secret1**
[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Validator**: minimum length for the secret is 10 characters | diff --git a/tests/results/test_namespace/00_6secret_param.sh b/tests/results/test_namespace/00_6secret_param.sh index 84d6a4aab..26eb4ff8e 100644 --- a/tests/results/test_namespace/00_6secret_param.sh +++ b/tests/results/test_namespace/00_6secret_param.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_6string.adoc b/tests/results/test_namespace/00_6string.adoc index ac237a119..cd865df8a 100644 --- a/tests/results/test_namespace/00_6string.adoc +++ b/tests/results/test_namespace/00_6string.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_6string.gitlab.md b/tests/results/test_namespace/00_6string.gitlab.md index 8e2624c0f..c4541b95a 100644 --- a/tests/results/test_namespace/00_6string.gitlab.md +++ b/tests/results/test_namespace/00_6string.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_6string.html b/tests/results/test_namespace/00_6string.html index ff83085cf..c3b199513 100644 --- a/tests/results/test_namespace/00_6string.html +++ b/tests/results/test_namespace/00_6string.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_6string.md b/tests/results/test_namespace/00_6string.md index bd090dbdf..10803611a 100644 --- a/tests/results/test_namespace/00_6string.md +++ b/tests/results/test_namespace/00_6string.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. | diff --git a/tests/results/test_namespace/00_6string.sh b/tests/results/test_namespace/00_6string.sh index 9890777ba..50d91f94d 100644 --- a/tests/results/test_namespace/00_6string.sh +++ b/tests/results/test_namespace/00_6string.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_7choice_quote.adoc b/tests/results/test_namespace/00_7choice_quote.adoc index be1e75686..ba45b1006 100644 --- a/tests/results/test_namespace/00_7choice_quote.adoc +++ b/tests/results/test_namespace/00_7choice_quote.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 753ac4cca..be103f2fc 100644 --- a/tests/results/test_namespace/00_7choice_quote.gitlab.md +++ b/tests/results/test_namespace/00_7choice_quote.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_7choice_quote.html b/tests/results/test_namespace/00_7choice_quote.html index b73d70db8..e041f8f6f 100644 --- a/tests/results/test_namespace/00_7choice_quote.html +++ b/tests/results/test_namespace/00_7choice_quote.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_7choice_quote.md b/tests/results/test_namespace/00_7choice_quote.md index c67d7372d..c45d94e0f 100644 --- a/tests/results/test_namespace/00_7choice_quote.md +++ b/tests/results/test_namespace/00_7choice_quote.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.
**Choices**:
- quote' **← (default)**
- quote"
- quote"' | diff --git a/tests/results/test_namespace/00_7choice_quote.sh b/tests/results/test_namespace/00_7choice_quote.sh index 324d614e9..147142e04 100644 --- a/tests/results/test_namespace/00_7choice_quote.sh +++ b/tests/results/test_namespace/00_7choice_quote.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_7help.adoc b/tests/results/test_namespace/00_7help.adoc index e5e316ffa..5130d12a0 100644 --- a/tests/results/test_namespace/00_7help.adoc +++ b/tests/results/test_namespace/00_7help.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_7help.gitlab.md b/tests/results/test_namespace/00_7help.gitlab.md index 1fde47710..bf3f2c700 100644 --- a/tests/results/test_namespace/00_7help.gitlab.md +++ b/tests/results/test_namespace/00_7help.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_7help.html b/tests/results/test_namespace/00_7help.html index 0914796df..a3b43d02f 100644 --- a/tests/results/test_namespace/00_7help.html +++ b/tests/results/test_namespace/00_7help.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_7help.md b/tests/results/test_namespace/00_7help.md index 97a41ab61..771c862b7 100644 --- a/tests/results/test_namespace/00_7help.md +++ b/tests/results/test_namespace/00_7help.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
Multi line

Help

With useful information. | diff --git a/tests/results/test_namespace/00_7help.sh b/tests/results/test_namespace/00_7help.sh index 33ec62d68..d14b871ec 100644 --- a/tests/results/test_namespace/00_7help.sh +++ b/tests/results/test_namespace/00_7help.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_7help_quote.adoc b/tests/results/test_namespace/00_7help_quote.adoc index 4182c5d3a..2488b6f02 100644 --- a/tests/results/test_namespace/00_7help_quote.adoc +++ b/tests/results/test_namespace/00_7help_quote.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 3b2b4490a..011c47b14 100644 --- a/tests/results/test_namespace/00_7help_quote.gitlab.md +++ b/tests/results/test_namespace/00_7help_quote.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_7help_quote.html b/tests/results/test_namespace/00_7help_quote.html index 98aad278f..64f617db7 100644 --- a/tests/results/test_namespace/00_7help_quote.html +++ b/tests/results/test_namespace/00_7help_quote.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_7help_quote.md b/tests/results/test_namespace/00_7help_quote.md index ca2b745f9..f78b4b6c3 100644 --- a/tests/results/test_namespace/00_7help_quote.md +++ b/tests/results/test_namespace/00_7help_quote.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
Message with '. | diff --git a/tests/results/test_namespace/00_7help_quote.sh b/tests/results/test_namespace/00_7help_quote.sh index a6d50c10a..509b087d0 100644 --- a/tests/results/test_namespace/00_7help_quote.sh +++ b/tests/results/test_namespace/00_7help_quote.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_7help_sup.adoc b/tests/results/test_namespace/00_7help_sup.adoc index 7905e144c..02f1a6002 100644 --- a/tests/results/test_namespace/00_7help_sup.adoc +++ b/tests/results/test_namespace/00_7help_sup.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 5cb1534d6..4cbbab3d3 100644 --- a/tests/results/test_namespace/00_7help_sup.gitlab.md +++ b/tests/results/test_namespace/00_7help_sup.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_7help_sup.html b/tests/results/test_namespace/00_7help_sup.html index 96e92ef77..089f18564 100644 --- a/tests/results/test_namespace/00_7help_sup.html +++ b/tests/results/test_namespace/00_7help_sup.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_7help_sup.md b/tests/results/test_namespace/00_7help_sup.md index 732aa9c56..b303cb850 100644 --- a/tests/results/test_namespace/00_7help_sup.md +++ b/tests/results/test_namespace/00_7help_sup.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first <variable>.
Multi line

<Help>

With useful information. | diff --git a/tests/results/test_namespace/00_7help_sup.sh b/tests/results/test_namespace/00_7help_sup.sh index f8b34c5ce..b057037b0 100644 --- a/tests/results/test_namespace/00_7help_sup.sh +++ b/tests/results/test_namespace/00_7help_sup.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_7value_doublequote.adoc b/tests/results/test_namespace/00_7value_doublequote.adoc index a032c1923..d2350dd7e 100644 --- a/tests/results/test_namespace/00_7value_doublequote.adoc +++ b/tests/results/test_namespace/00_7value_doublequote.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 a0a752be4..c5c662052 100644 --- a/tests/results/test_namespace/00_7value_doublequote.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_7value_doublequote.html b/tests/results/test_namespace/00_7value_doublequote.html index e48044dcc..976e739ca 100644 --- a/tests/results/test_namespace/00_7value_doublequote.html +++ b/tests/results/test_namespace/00_7value_doublequote.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_7value_doublequote.md b/tests/results/test_namespace/00_7value_doublequote.md index 374d66149..9e3d66f82 100644 --- a/tests/results/test_namespace/00_7value_doublequote.md +++ b/tests/results/test_namespace/00_7value_doublequote.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote" | diff --git a/tests/results/test_namespace/00_7value_doublequote.sh b/tests/results/test_namespace/00_7value_doublequote.sh index d74156217..68342ba13 100644 --- a/tests/results/test_namespace/00_7value_doublequote.sh +++ b/tests/results/test_namespace/00_7value_doublequote.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_7value_doublequote2.adoc b/tests/results/test_namespace/00_7value_doublequote2.adoc index bd976faaf..edab13865 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.adoc +++ b/tests/results/test_namespace/00_7value_doublequote2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 d93706f3b..00c528b4b 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_7value_doublequote2.html b/tests/results/test_namespace/00_7value_doublequote2.html index 18acc9356..03e7aeb18 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.html +++ b/tests/results/test_namespace/00_7value_doublequote2.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_7value_doublequote2.md b/tests/results/test_namespace/00_7value_doublequote2.md index 4e191e518..c5e863b42 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.md +++ b/tests/results/test_namespace/00_7value_doublequote2.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote'" | diff --git a/tests/results/test_namespace/00_7value_doublequote2.sh b/tests/results/test_namespace/00_7value_doublequote2.sh index f959fc039..885f6c005 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.sh +++ b/tests/results/test_namespace/00_7value_doublequote2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_7value_doublequote3.adoc b/tests/results/test_namespace/00_7value_doublequote3.adoc index c3fc077bb..a6b975e45 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.adoc +++ b/tests/results/test_namespace/00_7value_doublequote3.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 5552e0310..57e3dfe12 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_7value_doublequote3.html b/tests/results/test_namespace/00_7value_doublequote3.html index 753c9cd99..4b8e8a914 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.html +++ b/tests/results/test_namespace/00_7value_doublequote3.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_7value_doublequote3.md b/tests/results/test_namespace/00_7value_doublequote3.md index 915db5dca..525245ee8 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.md +++ b/tests/results/test_namespace/00_7value_doublequote3.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote\"\' | diff --git a/tests/results/test_namespace/00_7value_doublequote3.sh b/tests/results/test_namespace/00_7value_doublequote3.sh index 98dac2d80..45dd18a4f 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.sh +++ b/tests/results/test_namespace/00_7value_doublequote3.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_7value_quote.adoc b/tests/results/test_namespace/00_7value_quote.adoc index 7c707838a..d579e0935 100644 --- a/tests/results/test_namespace/00_7value_quote.adoc +++ b/tests/results/test_namespace/00_7value_quote.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 5cb51bf13..207a6bb18 100644 --- a/tests/results/test_namespace/00_7value_quote.gitlab.md +++ b/tests/results/test_namespace/00_7value_quote.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_7value_quote.html b/tests/results/test_namespace/00_7value_quote.html index 04cbc897c..0af35e8a5 100644 --- a/tests/results/test_namespace/00_7value_quote.html +++ b/tests/results/test_namespace/00_7value_quote.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_7value_quote.md b/tests/results/test_namespace/00_7value_quote.md index db7e8b8ba..d21224077 100644 --- a/tests/results/test_namespace/00_7value_quote.md +++ b/tests/results/test_namespace/00_7value_quote.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote' | diff --git a/tests/results/test_namespace/00_7value_quote.sh b/tests/results/test_namespace/00_7value_quote.sh index 8029a66ed..b76c22a7f 100644 --- a/tests/results/test_namespace/00_7value_quote.sh +++ b/tests/results/test_namespace/00_7value_quote.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_8calculation_information.adoc b/tests/results/test_namespace/00_8calculation_information.adoc index 4a01f5fbb..4cae9a049 100644 --- a/tests/results/test_namespace/00_8calculation_information.adoc +++ b/tests/results/test_namespace/00_8calculation_information.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 f0c9b717d..dd0e87de6 100644 --- a/tests/results/test_namespace/00_8calculation_information.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_information.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_8calculation_information.html b/tests/results/test_namespace/00_8calculation_information.html index fcad09a5e..2b08836ff 100644 --- a/tests/results/test_namespace/00_8calculation_information.html +++ b/tests/results/test_namespace/00_8calculation_information.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_8calculation_information.md b/tests/results/test_namespace/00_8calculation_information.md index f1896847e..ba42197ac 100644 --- a/tests/results/test_namespace/00_8calculation_information.md +++ b/tests/results/test_namespace/00_8calculation_information.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get information test_information | diff --git a/tests/results/test_namespace/00_8calculation_information.sh b/tests/results/test_namespace/00_8calculation_information.sh index cb51a0930..df5ec1af6 100644 --- a/tests/results/test_namespace/00_8calculation_information.sh +++ b/tests/results/test_namespace/00_8calculation_information.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_8calculation_namespace.adoc b/tests/results/test_namespace/00_8calculation_namespace.adoc index 9207c544a..7adc6af6b 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.adoc +++ b/tests/results/test_namespace/00_8calculation_namespace.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 a58b2b20b..451b9cb76 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_8calculation_namespace.html b/tests/results/test_namespace/00_8calculation_namespace.html index ae909a6e9..8e7fd4c95 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.html +++ b/tests/results/test_namespace/00_8calculation_namespace.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_8calculation_namespace.md b/tests/results/test_namespace/00_8calculation_namespace.md index cf131b38c..c73ec670a 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.md +++ b/tests/results/test_namespace/00_8calculation_namespace.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the namespace | diff --git a/tests/results/test_namespace/00_8calculation_namespace.sh b/tests/results/test_namespace/00_8calculation_namespace.sh index 74df137cd..1fc5854c2 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.sh +++ b/tests/results/test_namespace/00_8calculation_namespace.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.adoc b/tests/results/test_namespace/00_8calculation_param_namespace.adoc index 3895553d2..050e3aadc 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.adoc +++ b/tests/results/test_namespace/00_8calculation_param_namespace.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 bc2736237..2c128eeec 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.html b/tests/results/test_namespace/00_8calculation_param_namespace.html index 05d3c81da..8c8fbf3ac 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.html +++ b/tests/results/test_namespace/00_8calculation_param_namespace.html @@ -4,6 +4,8 @@ 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 474126912..15ff9da55 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.md +++ b/tests/results/test_namespace/00_8calculation_param_namespace.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: depends on a calculation | diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.sh b/tests/results/test_namespace/00_8calculation_param_namespace.sh index ad663602d..d5a63a6a1 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.sh +++ b/tests/results/test_namespace/00_8calculation_param_namespace.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_8test.adoc b/tests/results/test_namespace/00_8test.adoc index 4b4680a72..cf1bd3e89 100644 --- a/tests/results/test_namespace/00_8test.adoc +++ b/tests/results/test_namespace/00_8test.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_8test.gitlab.md b/tests/results/test_namespace/00_8test.gitlab.md index 8a44fb781..095a90f36 100644 --- a/tests/results/test_namespace/00_8test.gitlab.md +++ b/tests/results/test_namespace/00_8test.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_8test.html b/tests/results/test_namespace/00_8test.html index cfa984d27..97edabed3 100644 --- a/tests/results/test_namespace/00_8test.html +++ b/tests/results/test_namespace/00_8test.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/00_8test.md b/tests/results/test_namespace/00_8test.md index ef59ba8f7..d762774d1 100644 --- a/tests/results/test_namespace/00_8test.md +++ b/tests/results/test_namespace/00_8test.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Example**: test | diff --git a/tests/results/test_namespace/00_8test.sh b/tests/results/test_namespace/00_8test.sh index 1f42decd7..abb2af717 100644 --- a/tests/results/test_namespace/00_8test.sh +++ b/tests/results/test_namespace/00_8test.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9choice_variable_multi.adoc b/tests/results/test_namespace/00_9choice_variable_multi.adoc index 5aa0a2471..2aa65cddd 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.adoc +++ b/tests/results/test_namespace/00_9choice_variable_multi.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 a6e384a43..3e82c95ed 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md +++ b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_9choice_variable_multi.html b/tests/results/test_namespace/00_9choice_variable_multi.html index 9431debe5..7f4a57af7 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.html +++ b/tests/results/test_namespace/00_9choice_variable_multi.html @@ -4,6 +4,8 @@ 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 ee0aa3411..efca86c55 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.md +++ b/tests/results/test_namespace/00_9choice_variable_multi.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.
**Choices**:
- val1
- val2 | diff --git a/tests/results/test_namespace/00_9choice_variable_multi.sh b/tests/results/test_namespace/00_9choice_variable_multi.sh index ae0b48615..470734853 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.sh +++ b/tests/results/test_namespace/00_9choice_variable_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9choice_variables.adoc b/tests/results/test_namespace/00_9choice_variables.adoc index 569c0f0ef..0a54ae3a8 100644 --- a/tests/results/test_namespace/00_9choice_variables.adoc +++ b/tests/results/test_namespace/00_9choice_variables.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 102ed0d0c..68ed274f4 100644 --- a/tests/results/test_namespace/00_9choice_variables.gitlab.md +++ b/tests/results/test_namespace/00_9choice_variables.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9choice_variables.html b/tests/results/test_namespace/00_9choice_variables.html index c271cb4c1..e24b47a80 100644 --- a/tests/results/test_namespace/00_9choice_variables.html +++ b/tests/results/test_namespace/00_9choice_variables.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_9choice_variables.md b/tests/results/test_namespace/00_9choice_variables.md index bc22dfef0..bbac48ceb 100644 --- a/tests/results/test_namespace/00_9choice_variables.md +++ b/tests/results/test_namespace/00_9choice_variables.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 | diff --git a/tests/results/test_namespace/00_9choice_variables.sh b/tests/results/test_namespace/00_9choice_variables.sh index 2076b5691..26c038a30 100644 --- a/tests/results/test_namespace/00_9choice_variables.sh +++ b/tests/results/test_namespace/00_9choice_variables.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation.adoc b/tests/results/test_namespace/00_9default_calculation.adoc index c25f03a5d..e144fe43d 100644 --- a/tests/results/test_namespace/00_9default_calculation.adoc +++ b/tests/results/test_namespace/00_9default_calculation.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 29cff6a1c..e0e7af02c 100644 --- a/tests/results/test_namespace/00_9default_calculation.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_calculation.html b/tests/results/test_namespace/00_9default_calculation.html index db2f8f141..166733953 100644 --- a/tests/results/test_namespace/00_9default_calculation.html +++ b/tests/results/test_namespace/00_9default_calculation.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation.md b/tests/results/test_namespace/00_9default_calculation.md index 1b83cda0a..da6a7cd4e 100644 --- a/tests/results/test_namespace/00_9default_calculation.md +++ b/tests/results/test_namespace/00_9default_calculation.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: concat all parameters | diff --git a/tests/results/test_namespace/00_9default_calculation.sh b/tests/results/test_namespace/00_9default_calculation.sh index ed7ec69ab..d9b0aebce 100644 --- a/tests/results/test_namespace/00_9default_calculation.sh +++ b/tests/results/test_namespace/00_9default_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation_information.adoc b/tests/results/test_namespace/00_9default_calculation_information.adoc index 28def1e7b..f15c80a44 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.adoc +++ b/tests/results/test_namespace/00_9default_calculation_information.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 8efd9a13c..6f198f7aa 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_calculation_information.html b/tests/results/test_namespace/00_9default_calculation_information.html index dcb3eee0b..9e8065f92 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.html +++ b/tests/results/test_namespace/00_9default_calculation_information.html @@ -4,6 +4,8 @@ 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 c3887f599..977e35b94 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.md +++ b/tests/results/test_namespace/00_9default_calculation_information.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: returns the information | diff --git a/tests/results/test_namespace/00_9default_calculation_information.sh b/tests/results/test_namespace/00_9default_calculation_information.sh index 8827e9c20..18c8af1f6 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.sh +++ b/tests/results/test_namespace/00_9default_calculation_information.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.adoc b/tests/results/test_namespace/00_9default_calculation_information_other_variable.adoc index 9898b5cb4..e7029d118 100644 --- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.adoc +++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 6274cc0f7..add33b6c9 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.html b/tests/results/test_namespace/00_9default_calculation_information_other_variable.html index 3f46ef073..53390d5c0 100644 --- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.html +++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.html @@ -4,6 +4,8 @@ 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 0f9756448..276ddae42 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 @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh index 7f5267cce..66662e464 100644 --- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc b/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc index 1d3b19616..d41eb6a1a 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 cf68004b9..0834956c8 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.html b/tests/results/test_namespace/00_9default_calculation_multi_optional.html index f5e5f54e2..3ef21f861 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.html +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.html @@ -4,6 +4,8 @@ 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 719e72941..44c3c4462 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 | diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace/00_9default_calculation_multi_optional.sh index 1267fbb99..d93f2e273 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.sh +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc b/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc index 1d3b19616..d41eb6a1a 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 cf68004b9..0834956c8 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.html b/tests/results/test_namespace/00_9default_calculation_multi_optional2.html index f5e5f54e2..3ef21f861 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.html +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.html @@ -4,6 +4,8 @@ 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 719e72941..44c3c4462 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 | diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh index 1267fbb99..d93f2e273 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc index 1d3b19616..d41eb6a1a 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 cf68004b9..0834956c8 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html index f5e5f54e2..3ef21f861 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html @@ -4,6 +4,8 @@ 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 719e72941..44c3c4462 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 @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 | diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh index 1267fbb99..d93f2e273 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation_optional.adoc b/tests/results/test_namespace/00_9default_calculation_optional.adoc index 39957cdf5..6370e3a70 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.adoc +++ b/tests/results/test_namespace/00_9default_calculation_optional.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 8ee15dafe..602b1b3e6 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_calculation_optional.html b/tests/results/test_namespace/00_9default_calculation_optional.html index 73d2aef21..b4ea3ae54 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.html +++ b/tests/results/test_namespace/00_9default_calculation_optional.html @@ -4,6 +4,8 @@ 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 51aca4227..e474e0313 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_optional.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | | diff --git a/tests/results/test_namespace/00_9default_calculation_optional.sh b/tests/results/test_namespace/00_9default_calculation_optional.sh index a9531a480..b35f3d304 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.sh +++ b/tests/results/test_namespace/00_9default_calculation_optional.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc b/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc index 94af879ad..d94ead500 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 d8a853ca5..d0246f38c 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.html b/tests/results/test_namespace/00_9default_calculation_optional_exists.html index c19fc366e..3d41e2fcc 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.html +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.html @@ -4,6 +4,8 @@ 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 094940ba1..442cbe109 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.md +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | **Default**:
- val1
- val2 | diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace/00_9default_calculation_optional_exists.sh index 46e6264f7..436bc410b 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.sh +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.adoc b/tests/results/test_namespace/00_9default_calculation_param_optional.adoc index 06a30ef73..84a6e5e61 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.adoc +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 a326da0d6..c8e2c2344 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.html b/tests/results/test_namespace/00_9default_calculation_param_optional.html index 438ff9be9..62fb1cd49 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.html +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.html @@ -4,6 +4,8 @@ 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 f587bb365..cfd9b65e0 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable.
**Default**: returns a value | diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.sh b/tests/results/test_namespace/00_9default_calculation_param_optional.sh index 86f03ca81..23c8d9463 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.sh +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_information_other_variable.adoc b/tests/results/test_namespace/00_9default_information_other_variable.adoc index e874e1db4..e65bacc1c 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.adoc +++ b/tests/results/test_namespace/00_9default_information_other_variable.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 2d85a4de9..21d421873 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_9default_information_other_variable.html b/tests/results/test_namespace/00_9default_information_other_variable.html index 7a2b56909..92798d214 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.html +++ b/tests/results/test_namespace/00_9default_information_other_variable.html @@ -4,6 +4,8 @@ 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 5011ee5e7..ae5f29b3a 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.md +++ b/tests/results/test_namespace/00_9default_information_other_variable.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test_namespace/00_9default_information_other_variable.sh b/tests/results/test_namespace/00_9default_information_other_variable.sh index f2b720a1c..4f808ca77 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace/00_9default_information_other_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.adoc b/tests/results/test_namespace/00_9default_information_other_variable2.adoc index e874e1db4..e65bacc1c 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.adoc +++ b/tests/results/test_namespace/00_9default_information_other_variable2.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 2d85a4de9..21d421873 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.html b/tests/results/test_namespace/00_9default_information_other_variable2.html index 7a2b56909..92798d214 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.html +++ b/tests/results/test_namespace/00_9default_information_other_variable2.html @@ -4,6 +4,8 @@ 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 5011ee5e7..ae5f29b3a 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.md +++ b/tests/results/test_namespace/00_9default_information_other_variable2.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.sh b/tests/results/test_namespace/00_9default_information_other_variable2.sh index f2b720a1c..4f808ca77 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace/00_9default_information_other_variable2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_integer.adoc b/tests/results/test_namespace/00_9default_integer.adoc index e47062821..9d90c3a78 100644 --- a/tests/results/test_namespace/00_9default_integer.adoc +++ b/tests/results/test_namespace/00_9default_integer.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 ba22a791a..3e4ada265 100644 --- a/tests/results/test_namespace/00_9default_integer.gitlab.md +++ b/tests/results/test_namespace/00_9default_integer.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_integer.html b/tests/results/test_namespace/00_9default_integer.html index ed1935679..74517147b 100644 --- a/tests/results/test_namespace/00_9default_integer.html +++ b/tests/results/test_namespace/00_9default_integer.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_9default_integer.md b/tests/results/test_namespace/00_9default_integer.md index 9fbc094b9..0c2fbf698 100644 --- a/tests/results/test_namespace/00_9default_integer.md +++ b/tests/results/test_namespace/00_9default_integer.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**: choice for 0 to 9
**Default**: 9 | diff --git a/tests/results/test_namespace/00_9default_integer.sh b/tests/results/test_namespace/00_9default_integer.sh index 3583f6839..d7602fc75 100644 --- a/tests/results/test_namespace/00_9default_integer.sh +++ b/tests/results/test_namespace/00_9default_integer.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9default_number.adoc b/tests/results/test_namespace/00_9default_number.adoc index e47062821..9d90c3a78 100644 --- a/tests/results/test_namespace/00_9default_number.adoc +++ b/tests/results/test_namespace/00_9default_number.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 ba22a791a..3e4ada265 100644 --- a/tests/results/test_namespace/00_9default_number.gitlab.md +++ b/tests/results/test_namespace/00_9default_number.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/00_9default_number.html b/tests/results/test_namespace/00_9default_number.html index ed1935679..74517147b 100644 --- a/tests/results/test_namespace/00_9default_number.html +++ b/tests/results/test_namespace/00_9default_number.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_9default_number.md b/tests/results/test_namespace/00_9default_number.md index 9fbc094b9..0c2fbf698 100644 --- a/tests/results/test_namespace/00_9default_number.md +++ b/tests/results/test_namespace/00_9default_number.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**: choice for 0 to 9
**Default**: 9 | diff --git a/tests/results/test_namespace/00_9default_number.sh b/tests/results/test_namespace/00_9default_number.sh index 3583f6839..d7602fc75 100644 --- a/tests/results/test_namespace/00_9default_number.sh +++ b/tests/results/test_namespace/00_9default_number.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9extra.adoc b/tests/results/test_namespace/00_9extra.adoc index 45810008d..ef2ea9d41 100644 --- a/tests/results/test_namespace/00_9extra.adoc +++ b/tests/results/test_namespace/00_9extra.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -21,6 +23,8 @@ A variable. + `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/00_9extra.gitlab.md b/tests/results/test_namespace/00_9extra.gitlab.md index 653b952e4..36b552b3b 100644 --- a/tests/results/test_namespace/00_9extra.gitlab.md +++ b/tests/results/test_namespace/00_9extra.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -14,7 +14,7 @@
Extra >>> [!note] Informations -**extra**
`standard` +**extra**
`standard` >>> diff --git a/tests/results/test_namespace/00_9extra.html b/tests/results/test_namespace/00_9extra.html index fb1672997..1887c2f37 100644 --- a/tests/results/test_namespace/00_9extra.html +++ b/tests/results/test_namespace/00_9extra.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -19,6 +21,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_9extra.md b/tests/results/test_namespace/00_9extra.md index ec0cec136..d37078fdf 100644 --- a/tests/results/test_namespace/00_9extra.md +++ b/tests/results/test_namespace/00_9extra.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: rougail | @@ -14,6 +16,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **extra.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: return no | diff --git a/tests/results/test_namespace/00_9extra.sh b/tests/results/test_namespace/00_9extra.sh index 0a8a8aac7..36d43a8ae 100644 --- a/tests/results/test_namespace/00_9extra.sh +++ b/tests/results/test_namespace/00_9extra.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -33,6 +35,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9extra_calculation.adoc b/tests/results/test_namespace/00_9extra_calculation.adoc index 8af28509c..c20355443 100644 --- a/tests/results/test_namespace/00_9extra_calculation.adoc +++ b/tests/results/test_namespace/00_9extra_calculation.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -21,6 +23,8 @@ A variable. + `standard` + + [cols="1a,1a"] |==== | 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 98b96965f..265681906 100644 --- a/tests/results/test_namespace/00_9extra_calculation.gitlab.md +++ b/tests/results/test_namespace/00_9extra_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -14,7 +14,7 @@
Extra >>> [!note] Informations -**extra**
`standard` +**extra**
`standard` >>> diff --git a/tests/results/test_namespace/00_9extra_calculation.html b/tests/results/test_namespace/00_9extra_calculation.html index 6705fb283..4f2dde6eb 100644 --- a/tests/results/test_namespace/00_9extra_calculation.html +++ b/tests/results/test_namespace/00_9extra_calculation.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -19,6 +21,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_9extra_calculation.md b/tests/results/test_namespace/00_9extra_calculation.md index 7d148f68c..af0c7290f 100644 --- a/tests/results/test_namespace/00_9extra_calculation.md +++ b/tests/results/test_namespace/00_9extra_calculation.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value | @@ -14,6 +16,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **extra.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "rougail.variable" | diff --git a/tests/results/test_namespace/00_9extra_calculation.sh b/tests/results/test_namespace/00_9extra_calculation.sh index c5638cdb7..6e515ff6c 100644 --- a/tests/results/test_namespace/00_9extra_calculation.sh +++ b/tests/results/test_namespace/00_9extra_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -33,6 +35,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/00_9extra_ouside.adoc b/tests/results/test_namespace/00_9extra_ouside.adoc index 2df8322ba..731849bf4 100644 --- a/tests/results/test_namespace/00_9extra_ouside.adoc +++ b/tests/results/test_namespace/00_9extra_ouside.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -21,6 +23,8 @@ A variable. + `standard` + + [cols="1a,1a"] |==== | 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 a506e16d7..cd72d15a6 100644 --- a/tests/results/test_namespace/00_9extra_ouside.gitlab.md +++ b/tests/results/test_namespace/00_9extra_ouside.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -14,7 +14,7 @@
Extra >>> [!note] Informations -**extra**
`standard` +**extra**
`standard` >>> diff --git a/tests/results/test_namespace/00_9extra_ouside.html b/tests/results/test_namespace/00_9extra_ouside.html index c3565cea4..0ee334711 100644 --- a/tests/results/test_namespace/00_9extra_ouside.html +++ b/tests/results/test_namespace/00_9extra_ouside.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -19,6 +21,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/00_9extra_ouside.md b/tests/results/test_namespace/00_9extra_ouside.md index 2facf4e6c..81051589a 100644 --- a/tests/results/test_namespace/00_9extra_ouside.md +++ b/tests/results/test_namespace/00_9extra_ouside.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "extra.variable" | @@ -14,6 +16,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **extra.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra | diff --git a/tests/results/test_namespace/00_9extra_ouside.sh b/tests/results/test_namespace/00_9extra_ouside.sh index 77ff57a83..a3ddd31aa 100644 --- a/tests/results/test_namespace/00_9extra_ouside.sh +++ b/tests/results/test_namespace/00_9extra_ouside.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -34,6 +36,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_6boolean_multi.adoc b/tests/results/test_namespace/01_6boolean_multi.adoc index 1fe1e4d9d..fe803782e 100644 --- a/tests/results/test_namespace/01_6boolean_multi.adoc +++ b/tests/results/test_namespace/01_6boolean_multi.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 b9c912743..06c5897ba 100644 --- a/tests/results/test_namespace/01_6boolean_multi.gitlab.md +++ b/tests/results/test_namespace/01_6boolean_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_6boolean_multi.html b/tests/results/test_namespace/01_6boolean_multi.html index 98782cf69..3869052a0 100644 --- a/tests/results/test_namespace/01_6boolean_multi.html +++ b/tests/results/test_namespace/01_6boolean_multi.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/01_6boolean_multi.md b/tests/results/test_namespace/01_6boolean_multi.md index 7f7556385..88fdf34b4 100644 --- a/tests/results/test_namespace/01_6boolean_multi.md +++ b/tests/results/test_namespace/01_6boolean_multi.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.
**Default**:
- true | diff --git a/tests/results/test_namespace/01_6boolean_multi.sh b/tests/results/test_namespace/01_6boolean_multi.sh index f96ef9362..68064cf1c 100644 --- a/tests/results/test_namespace/01_6boolean_multi.sh +++ b/tests/results/test_namespace/01_6boolean_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_6custom_multi.adoc b/tests/results/test_namespace/01_6custom_multi.adoc index 06e76be72..ae65b4aea 100644 --- a/tests/results/test_namespace/01_6custom_multi.adoc +++ b/tests/results/test_namespace/01_6custom_multi.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 d1da96ca1..d3f1cdb1a 100644 --- a/tests/results/test_namespace/01_6custom_multi.gitlab.md +++ b/tests/results/test_namespace/01_6custom_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/01_6custom_multi.html b/tests/results/test_namespace/01_6custom_multi.html index 6d6480120..bf815e96c 100644 --- a/tests/results/test_namespace/01_6custom_multi.html +++ b/tests/results/test_namespace/01_6custom_multi.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/01_6custom_multi.md b/tests/results/test_namespace/01_6custom_multi.md index bfec8c9de..878e2271c 100644 --- a/tests/results/test_namespace/01_6custom_multi.md +++ b/tests/results/test_namespace/01_6custom_multi.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.custom1**
[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first custom variable. | diff --git a/tests/results/test_namespace/01_6custom_multi.sh b/tests/results/test_namespace/01_6custom_multi.sh index 11c830bb3..bcf6eba86 100644 --- a/tests/results/test_namespace/01_6custom_multi.sh +++ b/tests/results/test_namespace/01_6custom_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_6float_multi.adoc b/tests/results/test_namespace/01_6float_multi.adoc index 04ba348bd..4ef437f2c 100644 --- a/tests/results/test_namespace/01_6float_multi.adoc +++ b/tests/results/test_namespace/01_6float_multi.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 ceb696b04..dfa12d692 100644 --- a/tests/results/test_namespace/01_6float_multi.gitlab.md +++ b/tests/results/test_namespace/01_6float_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_6float_multi.html b/tests/results/test_namespace/01_6float_multi.html index 161d81027..d08d2cd48 100644 --- a/tests/results/test_namespace/01_6float_multi.html +++ b/tests/results/test_namespace/01_6float_multi.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/01_6float_multi.md b/tests/results/test_namespace/01_6float_multi.md index 6dab9d42f..435e5798b 100644 --- a/tests/results/test_namespace/01_6float_multi.md +++ b/tests/results/test_namespace/01_6float_multi.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                      | Description                                                                                                                   | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.
**Default**:
- 0.0 | diff --git a/tests/results/test_namespace/01_6float_multi.sh b/tests/results/test_namespace/01_6float_multi.sh index 1e3d7bacb..bbea7ffea 100644 --- a/tests/results/test_namespace/01_6float_multi.sh +++ b/tests/results/test_namespace/01_6float_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_6integer_multi.adoc b/tests/results/test_namespace/01_6integer_multi.adoc index be8520413..6b8b9fc6e 100644 --- a/tests/results/test_namespace/01_6integer_multi.adoc +++ b/tests/results/test_namespace/01_6integer_multi.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 28ba65df6..4761ccb1f 100644 --- a/tests/results/test_namespace/01_6integer_multi.gitlab.md +++ b/tests/results/test_namespace/01_6integer_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_6integer_multi.html b/tests/results/test_namespace/01_6integer_multi.html index f649e766f..3f525d187 100644 --- a/tests/results/test_namespace/01_6integer_multi.html +++ b/tests/results/test_namespace/01_6integer_multi.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/01_6integer_multi.md b/tests/results/test_namespace/01_6integer_multi.md index 368671cfd..2ce7be597 100644 --- a/tests/results/test_namespace/01_6integer_multi.md +++ b/tests/results/test_namespace/01_6integer_multi.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.
**Default**:
- 0 | diff --git a/tests/results/test_namespace/01_6integer_multi.sh b/tests/results/test_namespace/01_6integer_multi.sh index 2d162cd8c..05baddc09 100644 --- a/tests/results/test_namespace/01_6integer_multi.sh +++ b/tests/results/test_namespace/01_6integer_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.adoc b/tests/results/test_namespace/01_6integer_multi_mandatory.adoc index 0f139c6d8..181b5f5c9 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.adoc +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 319a2e12c..d8aecc55f 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.html b/tests/results/test_namespace/01_6integer_multi_mandatory.html index cce37ed91..6ed1ba73d 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.html +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.html @@ -4,6 +4,8 @@ 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 9383054a4..930fb2913 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.md +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                     | Description                                                                                                                  | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The first variable. | diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.sh b/tests/results/test_namespace/01_6integer_multi_mandatory.sh index a78ee2c57..c285ac363 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.sh +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_6string_empty.adoc b/tests/results/test_namespace/01_6string_empty.adoc index cd80a962b..1d0925068 100644 --- a/tests/results/test_namespace/01_6string_empty.adoc +++ b/tests/results/test_namespace/01_6string_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 415319973..a6e7f6be2 100644 --- a/tests/results/test_namespace/01_6string_empty.gitlab.md +++ b/tests/results/test_namespace/01_6string_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_6string_empty.html b/tests/results/test_namespace/01_6string_empty.html index b42c987b5..036d19c5a 100644 --- a/tests/results/test_namespace/01_6string_empty.html +++ b/tests/results/test_namespace/01_6string_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/01_6string_empty.md b/tests/results/test_namespace/01_6string_empty.md index 12715424f..8730ff9c1 100644 --- a/tests/results/test_namespace/01_6string_empty.md +++ b/tests/results/test_namespace/01_6string_empty.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The second variable.
**Default**:
- value
- null | diff --git a/tests/results/test_namespace/01_6string_empty.sh b/tests/results/test_namespace/01_6string_empty.sh index 1e25abd2c..904367b5e 100644 --- a/tests/results/test_namespace/01_6string_empty.sh +++ b/tests/results/test_namespace/01_6string_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_6string_multi.adoc b/tests/results/test_namespace/01_6string_multi.adoc index 3a46d7080..005c7279e 100644 --- a/tests/results/test_namespace/01_6string_multi.adoc +++ b/tests/results/test_namespace/01_6string_multi.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 74eacf592..295e67826 100644 --- a/tests/results/test_namespace/01_6string_multi.gitlab.md +++ b/tests/results/test_namespace/01_6string_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/01_6string_multi.html b/tests/results/test_namespace/01_6string_multi.html index 71cfa3ac0..e0ccf1392 100644 --- a/tests/results/test_namespace/01_6string_multi.html +++ b/tests/results/test_namespace/01_6string_multi.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/01_6string_multi.md b/tests/results/test_namespace/01_6string_multi.md index 3f5b5335a..42cc71121 100644 --- a/tests/results/test_namespace/01_6string_multi.md +++ b/tests/results/test_namespace/01_6string_multi.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The first variable. | diff --git a/tests/results/test_namespace/01_6string_multi.sh b/tests/results/test_namespace/01_6string_multi.sh index c5d838354..3a85f9eb1 100644 --- a/tests/results/test_namespace/01_6string_multi.sh +++ b/tests/results/test_namespace/01_6string_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_6string_multi_length.adoc b/tests/results/test_namespace/01_6string_multi_length.adoc new file mode 100644 index 000000000..f72b823cc --- /dev/null +++ b/tests/results/test_namespace/01_6string_multi_length.adoc @@ -0,0 +1,38 @@ +== Variables for "Rougail" + +**rougail** + +`standard` + + + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validator**: needs exactly 3 values + +**Default**: + +* val1 +* val2 +* val3 +| + +**rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validators**: + +* needs a minimum of 1 values +* needs a maximum of 4 values + +**Default**: + +* val4 +* val5 +|==== + diff --git a/tests/results/test_namespace/01_6string_multi_length.gitlab.md b/tests/results/test_namespace/01_6string_multi_length.gitlab.md new file mode 100644 index 000000000..a4f291102 --- /dev/null +++ b/tests/results/test_namespace/01_6string_multi_length.gitlab.md @@ -0,0 +1,14 @@ +
Rougail + +>>> [!note] Informations +**rougail**
`standard` + + +>>> +| Variable | Description | +|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + +
+ diff --git a/tests/results/test_namespace/01_6string_multi_length.html b/tests/results/test_namespace/01_6string_multi_length.html new file mode 100644 index 000000000..8a08dc1d6 --- /dev/null +++ b/tests/results/test_namespace/01_6string_multi_length.html @@ -0,0 +1,22 @@ +

Variables for "Rougail"

+ +rougail + +standard + + + +
Variable Description
+ + + + + + + +
Variable Description
rougail.var1
string standard mandatory unique multiple
The variable.
Validator: needs exactly 3 values
Default:
  • val1
  • +
  • val2
  • +
  • val3
rougail.var2
string standard mandatory unique multiple
The variable.
Validators:
  • needs a minimum of 1 values
  • +
  • needs a maximum of 4 values

Default:
  • val4
  • +
  • val5
+ diff --git a/tests/results/test_namespace/01_6string_multi_length.json b/tests/results/test_namespace/01_6string_multi_length.json new file mode 100644 index 000000000..e118e53a2 --- /dev/null +++ b/tests/results/test_namespace/01_6string_multi_length.json @@ -0,0 +1,121 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "path": "rougail", + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "standard" + } + ] + }, + "children": { + "var1": { + "type": "variable", + "default": { + "name": "Default", + "values": [ + "val1", + "val2", + "val3" + ] + }, + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "validators": { + "name": "Validator", + "values": "needs exactly 3 values" + }, + "path": "rougail.var1", + "names": [ + "var1" + ], + "description": "The variable.", + "gen_examples": [ + [ + "val1", + "val2", + "val3" + ] + ], + "mandatory_without_value": false + }, + "var2": { + "type": "variable", + "default": { + "name": "Default", + "values": [ + "val4", + "val5" + ] + }, + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "validators": { + "name": "Validators", + "values": [ + "needs a minimum of 1 values", + "needs a maximum of 4 values" + ] + }, + "path": "rougail.var2", + "names": [ + "var2" + ], + "description": "The variable.", + "gen_examples": [ + [ + "val4", + "val5" + ] + ], + "mandatory_without_value": false + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/01_6string_multi_length.md b/tests/results/test_namespace/01_6string_multi_length.md new file mode 100644 index 000000000..6e942ce52 --- /dev/null +++ b/tests/results/test_namespace/01_6string_multi_length.md @@ -0,0 +1,13 @@ +# Variables for "Rougail" + +**rougail** + +`standard` + + + +| Variable                                                                                                                       | Description                                                                                                                    | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test_namespace/01_6string_multi_length.sh b/tests/results/test_namespace/01_6string_multi_length.sh new file mode 100644 index 000000000..920108549 --- /dev/null +++ b/tests/results/test_namespace/01_6string_multi_length.sh @@ -0,0 +1,35 @@ + + +Variables for "Rougail" + + + +rougail + + + + standard  + + + + + +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ Variable  ┃ Description  ┃ +┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ +│ rougail.var1 │ The variable. │ +│  string   standard   mandatory    │ Validator: needs exactly 3 values │ +│ unique   multiple  │ Default: │ +│ │ - val1 │ +│ │ - val2 │ +│ │ - val3 │ +├───────────────────────────────────────┼──────────────────────────────────────┤ +│ rougail.var2 │ The variable. │ +│  string   standard   mandatory    │ Validators: │ +│ unique   multiple  │ - needs a minimum of 1 values │ +│ │ - needs a maximum of 4 values │ +│ │ Default: │ +│ │ - val4 │ +│ │ - val5 │ +└───────────────────────────────────────┴──────────────────────────────────────┘ + diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.adoc b/tests/results/test_namespace/01_7value_multi_doublequote.adoc index b75bea161..48c93efed 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.adoc +++ b/tests/results/test_namespace/01_7value_multi_doublequote.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 3639b27f4..efbfed979 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.html b/tests/results/test_namespace/01_7value_multi_doublequote.html index 6408d1896..04b193e45 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.html +++ b/tests/results/test_namespace/01_7value_multi_doublequote.html @@ -4,6 +4,8 @@ standard + + diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.md b/tests/results/test_namespace/01_7value_multi_doublequote.md index c96f26197..53f535211 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- quote" | diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.sh b/tests/results/test_namespace/01_7value_multi_doublequote.sh index 937449f7e..c00263319 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.sh +++ b/tests/results/test_namespace/01_7value_multi_doublequote.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.adoc b/tests/results/test_namespace/01_7value_multi_doublequote2.adoc index ca6615aa7..bbd17b076 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.adoc +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 04667ee63..6086f8c7d 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.html b/tests/results/test_namespace/01_7value_multi_doublequote2.html index 61bb1caea..caabf1382 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.html +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.html @@ -4,6 +4,8 @@ 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 34dd391d4..3d91aecf1 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- quote'" | diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.sh b/tests/results/test_namespace/01_7value_multi_doublequote2.sh index 9b72e590c..1b30566ad 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.sh +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_7value_multi_quote.adoc b/tests/results/test_namespace/01_7value_multi_quote.adoc index c4a8f49a4..3418c7ef7 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.adoc +++ b/tests/results/test_namespace/01_7value_multi_quote.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 24eb11d86..6d26f59d2 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_7value_multi_quote.html b/tests/results/test_namespace/01_7value_multi_quote.html index a568961ec..8bec28de4 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.html +++ b/tests/results/test_namespace/01_7value_multi_quote.html @@ -4,6 +4,8 @@ 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 a3d52cbf8..a522981d2 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.md +++ b/tests/results/test_namespace/01_7value_multi_quote.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- quote' | diff --git a/tests/results/test_namespace/01_7value_multi_quote.sh b/tests/results/test_namespace/01_7value_multi_quote.sh index c5112b695..9a71de2d4 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.sh +++ b/tests/results/test_namespace/01_7value_multi_quote.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_8calculation_information_multi.adoc b/tests/results/test_namespace/01_8calculation_information_multi.adoc index 3f6af82c7..3662b6b7d 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.adoc +++ b/tests/results/test_namespace/01_8calculation_information_multi.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 906489f66..ca49c8963 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md +++ b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_8calculation_information_multi.html b/tests/results/test_namespace/01_8calculation_information_multi.html index ccac55b0d..fe0a2c85b 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.html +++ b/tests/results/test_namespace/01_8calculation_information_multi.html @@ -4,6 +4,8 @@ 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 380c29529..4fa7972c4 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.md +++ b/tests/results/test_namespace/01_8calculation_information_multi.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: get information test_information | diff --git a/tests/results/test_namespace/01_8calculation_information_multi.sh b/tests/results/test_namespace/01_8calculation_information_multi.sh index ff1139474..6e889d93e 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.sh +++ b/tests/results/test_namespace/01_8calculation_information_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_9choice_variable_multi.adoc b/tests/results/test_namespace/01_9choice_variable_multi.adoc index ec7c16386..cb165f05b 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.adoc +++ b/tests/results/test_namespace/01_9choice_variable_multi.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 e6aaa1edd..c02433fa4 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md +++ b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/01_9choice_variable_multi.html b/tests/results/test_namespace/01_9choice_variable_multi.html index ec25ad4ec..f68b5ecaa 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.html +++ b/tests/results/test_namespace/01_9choice_variable_multi.html @@ -4,6 +4,8 @@ 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 ee0dcd9cd..84acaf276 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.md +++ b/tests/results/test_namespace/01_9choice_variable_multi.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.
**Default**:
- a
- b
- c | diff --git a/tests/results/test_namespace/01_9choice_variable_multi.sh b/tests/results/test_namespace/01_9choice_variable_multi.sh index f43370067..52375e793 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace/01_9choice_variable_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/01_9choice_variable_optional.adoc b/tests/results/test_namespace/01_9choice_variable_optional.adoc index 678adc71a..12357ee11 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.adoc +++ b/tests/results/test_namespace/01_9choice_variable_optional.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 b4d6bacdf..e7f6df679 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md +++ b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/01_9choice_variable_optional.html b/tests/results/test_namespace/01_9choice_variable_optional.html index 55e74b06f..623c660b6 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.html +++ b/tests/results/test_namespace/01_9choice_variable_optional.html @@ -4,6 +4,8 @@ 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 755f80120..834e123fe 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.md +++ b/tests/results/test_namespace/01_9choice_variable_optional.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
- a
- b
- c **← (default)** | diff --git a/tests/results/test_namespace/01_9choice_variable_optional.sh b/tests/results/test_namespace/01_9choice_variable_optional.sh index 81598b642..0365aca90 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.sh +++ b/tests/results/test_namespace/01_9choice_variable_optional.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/02_0tags.adoc b/tests/results/test_namespace/02_0tags.adoc index 676809ff2..94a99ffd1 100644 --- a/tests/results/test_namespace/02_0tags.adoc +++ b/tests/results/test_namespace/02_0tags.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/02_0tags.gitlab.md b/tests/results/test_namespace/02_0tags.gitlab.md index b930cc77e..d3fe0c84d 100644 --- a/tests/results/test_namespace/02_0tags.gitlab.md +++ b/tests/results/test_namespace/02_0tags.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/02_0tags.html b/tests/results/test_namespace/02_0tags.html index 99f783221..acb0aa419 100644 --- a/tests/results/test_namespace/02_0tags.html +++ b/tests/results/test_namespace/02_0tags.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/02_0tags.md b/tests/results/test_namespace/02_0tags.md index 8cb13e941..0ea53c514 100644 --- a/tests/results/test_namespace/02_0tags.md +++ b/tests/results/test_namespace/02_0tags.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Tag**: one_tag | diff --git a/tests/results/test_namespace/02_0tags.sh b/tests/results/test_namespace/02_0tags.sh index 7eff2d93b..4d226f29e 100644 --- a/tests/results/test_namespace/02_0tags.sh +++ b/tests/results/test_namespace/02_0tags.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_0type_param.adoc b/tests/results/test_namespace/04_0type_param.adoc index 11acbf6fe..f5fe2f2b8 100644 --- a/tests/results/test_namespace/04_0type_param.adoc +++ b/tests/results/test_namespace/04_0type_param.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 b147cae1a..e13ffda38 100644 --- a/tests/results/test_namespace/04_0type_param.gitlab.md +++ b/tests/results/test_namespace/04_0type_param.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_0type_param.html b/tests/results/test_namespace/04_0type_param.html index 0ed6cac49..6c568af99 100644 --- a/tests/results/test_namespace/04_0type_param.html +++ b/tests/results/test_namespace/04_0type_param.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/04_0type_param.md b/tests/results/test_namespace/04_0type_param.md index a112b7d9f..356955d8d 100644 --- a/tests/results/test_namespace/04_0type_param.md +++ b/tests/results/test_namespace/04_0type_param.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A limited number.
**Validators**:
- the minimum value is 0
- the maximum value is 100
**Default**: 10 | diff --git a/tests/results/test_namespace/04_0type_param.sh b/tests/results/test_namespace/04_0type_param.sh index ab0b6c792..c90c70712 100644 --- a/tests/results/test_namespace/04_0type_param.sh +++ b/tests/results/test_namespace/04_0type_param.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_0type_param_integer.adoc b/tests/results/test_namespace/04_0type_param_integer.adoc index bafb0c66b..bc24fe5ce 100644 --- a/tests/results/test_namespace/04_0type_param_integer.adoc +++ b/tests/results/test_namespace/04_0type_param_integer.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 a8aff69d4..2acfad36d 100644 --- a/tests/results/test_namespace/04_0type_param_integer.gitlab.md +++ b/tests/results/test_namespace/04_0type_param_integer.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_0type_param_integer.html b/tests/results/test_namespace/04_0type_param_integer.html index a0a430b05..6de3d5576 100644 --- a/tests/results/test_namespace/04_0type_param_integer.html +++ b/tests/results/test_namespace/04_0type_param_integer.html @@ -4,6 +4,8 @@ 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 9aa996c48..f98a52a58 100644 --- a/tests/results/test_namespace/04_0type_param_integer.md +++ b/tests/results/test_namespace/04_0type_param_integer.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A limited integer.
**Validators**:
- the minimum value is 0
- the maximum value is 100
**Default**: 10 | diff --git a/tests/results/test_namespace/04_0type_param_integer.sh b/tests/results/test_namespace/04_0type_param_integer.sh index a76ca41af..6af474fb7 100644 --- a/tests/results/test_namespace/04_0type_param_integer.sh +++ b/tests/results/test_namespace/04_0type_param_integer.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1auto_save.adoc b/tests/results/test_namespace/04_1auto_save.adoc index ef6cf92d5..09d0b9fc5 100644 --- a/tests/results/test_namespace/04_1auto_save.adoc +++ b/tests/results/test_namespace/04_1auto_save.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 b939af2ff..45d5aea54 100644 --- a/tests/results/test_namespace/04_1auto_save.gitlab.md +++ b/tests/results/test_namespace/04_1auto_save.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1auto_save.html b/tests/results/test_namespace/04_1auto_save.html index c028bc450..fbca8da3c 100644 --- a/tests/results/test_namespace/04_1auto_save.html +++ b/tests/results/test_namespace/04_1auto_save.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/04_1auto_save.md b/tests/results/test_namespace/04_1auto_save.md index 841291c86..dd063e815 100644 --- a/tests/results/test_namespace/04_1auto_save.md +++ b/tests/results/test_namespace/04_1auto_save.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `auto modified` | An auto save variable.
**Default**: no | diff --git a/tests/results/test_namespace/04_1auto_save.sh b/tests/results/test_namespace/04_1auto_save.sh index 599ec6053..886942b22 100644 --- a/tests/results/test_namespace/04_1auto_save.sh +++ b/tests/results/test_namespace/04_1auto_save.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.adoc b/tests/results/test_namespace/04_1auto_save_and_calculated.adoc index 9beab6d2b..e47426fd0 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.adoc +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 dd29a9d02..40e6ec11d 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.html b/tests/results/test_namespace/04_1auto_save_and_calculated.html index 6758b98a4..dd86fa9ea 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.html +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.html @@ -4,6 +4,8 @@ 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 96c1f594c..71e98a16a 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.md +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no | diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.sh b/tests/results/test_namespace/04_1auto_save_and_calculated.sh index ced1307cd..af2200876 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.sh +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.adoc b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.adoc index 1b0ff68e7..f37a8b30e 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.adoc +++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 f4811936b..125d6c1ee 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.html b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.html index ded6dad56..dc14d903f 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.html +++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.html @@ -4,6 +4,8 @@ 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 b2f45ded6..835974db3 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 @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                           | Description                                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no | diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh index f954a34c8..e683588d5 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh +++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.adoc b/tests/results/test_namespace/04_1default_calculation_hidden.adoc index 0e1c8d90a..87667a545 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 679bc359b..64d49919d 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.html b/tests/results/test_namespace/04_1default_calculation_hidden.html index 817d78146..1ba637f10 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden.html @@ -4,6 +4,8 @@ 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 376b07ae3..68372b3f4 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.sh b/tests/results/test_namespace/04_1default_calculation_hidden.sh index 940715583..fc6f796a4 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc b/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc index 0e1c8d90a..87667a545 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 679bc359b..64d49919d 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.html b/tests/results/test_namespace/04_1default_calculation_hidden_2.html index 817d78146..1ba637f10 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.html @@ -4,6 +4,8 @@ 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 376b07ae3..68372b3f4 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace/04_1default_calculation_hidden_2.sh index 940715583..fc6f796a4 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.adoc b/tests/results/test_namespace/04_1default_calculation_hidden_3.adoc index 6df588c7a..2fe98c0fb 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 83969bda5..58974a09f 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.html b/tests/results/test_namespace/04_1default_calculation_hidden_3.html index f133e5a2b..e16af4255 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.html @@ -4,6 +4,8 @@ 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 41a330d7c..10bc9ce4c 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace/04_1default_calculation_hidden_3.sh index ea1381a19..74452ac3d 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.adoc b/tests/results/test_namespace/04_1default_calculation_hidden_4.adoc index d5c56fefb..5f33f1cf4 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 11b54f7c0..c061f46fb 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.html b/tests/results/test_namespace/04_1default_calculation_hidden_4.html index e0746d505..58bd0ab12 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.html @@ -4,6 +4,8 @@ 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 1c0ed054e..b829bfa7d 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace/04_1default_calculation_hidden_4.sh index 536d3530b..04f087a6e 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.adoc b/tests/results/test_namespace/04_1default_calculation_hidden_5.adoc index 3516f70fc..51907037a 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 6cf976e15..fa151c28a 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.html b/tests/results/test_namespace/04_1default_calculation_hidden_5.html index 8be08c47d..ae5bc311d 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.html @@ -4,6 +4,8 @@ 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 34efc376a..b2badcd63 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace/04_1default_calculation_hidden_5.sh index 82aa98679..72f3b9390 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.adoc b/tests/results/test_namespace/04_1default_calculation_hidden_6.adoc index 3516f70fc..51907037a 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 6cf976e15..fa151c28a 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.html b/tests/results/test_namespace/04_1default_calculation_hidden_6.html index 8be08c47d..ae5bc311d 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.html @@ -4,6 +4,8 @@ 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 34efc376a..b2badcd63 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value | diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace/04_1default_calculation_hidden_6.sh index 82aa98679..72f3b9390 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation.adoc b/tests/results/test_namespace/04_5disabled_calculation.adoc index 0b24e052e..2c4852248 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 62664d131..92d91f34f 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation.html b/tests/results/test_namespace/04_5disabled_calculation.html index 460fd613a..a5574ca54 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.html +++ b/tests/results/test_namespace/04_5disabled_calculation.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation.md b/tests/results/test_namespace/04_5disabled_calculation.md index 5dd6a5d41..d4e7f7a1b 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.md +++ b/tests/results/test_namespace/04_5disabled_calculation.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A conditional variable.
**Default**: no | diff --git a/tests/results/test_namespace/04_5disabled_calculation.sh b/tests/results/test_namespace/04_5disabled_calculation.sh index 4f94aa5b2..85904fbc2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.sh +++ b/tests/results/test_namespace/04_5disabled_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.adoc b/tests/results/test_namespace/04_5disabled_calculation_boolean.adoc index 933bbf1bc..731a5570e 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 0335674e6..dde1892c1 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.html b/tests/results/test_namespace/04_5disabled_calculation_boolean.html index 40d039078..9bcdd6609 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.html +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.html @@ -4,6 +4,8 @@ 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 f4a952d7b..94f45b6a7 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.md +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A conditional variable.
**Default**: no | diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace/04_5disabled_calculation_boolean.sh index 8d4d34185..fca2f2bbe 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.adoc b/tests/results/test_namespace/04_5disabled_calculation_default.adoc index 0925c0bc3..fddcc94a0 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_default.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 893c74e74..08e675800 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.html b/tests/results/test_namespace/04_5disabled_calculation_default.html index 1a3524a64..72301b42f 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.html +++ b/tests/results/test_namespace/04_5disabled_calculation_default.html @@ -4,6 +4,8 @@ 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 87f802985..0364b6aa4 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.md +++ b/tests/results/test_namespace/04_5disabled_calculation_default.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no | diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.sh b/tests/results/test_namespace/04_5disabled_calculation_default.sh index 02445797e..e6b1386fa 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_default.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.adoc b/tests/results/test_namespace/04_5disabled_calculation_multi.adoc index 485653d21..1e3f7e5f2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 e4e4e0990..7d86c9a9d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.html b/tests/results/test_namespace/04_5disabled_calculation_multi.html index f626b4e60..6e6092888 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.html +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.html @@ -4,6 +4,8 @@ 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 2cdadaa79..3ad1b655f 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.md +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                                 | Description                                                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A conditional variable.
**Default**: no | diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.sh b/tests/results/test_namespace/04_5disabled_calculation_multi.sh index 4486146df..9ae475408 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.adoc b/tests/results/test_namespace/04_5disabled_calculation_optional.adoc index a46d60de1..7e6182dbc 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 2dcae41f6..320b80f0c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.html b/tests/results/test_namespace/04_5disabled_calculation_optional.html index 5039ab9a2..99d16386b 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.html +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.html @@ -4,6 +4,8 @@ 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 b3b11cf2a..0f5865268 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no | diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.sh b/tests/results/test_namespace/04_5disabled_calculation_optional.sh index d4de8888b..4a31df07b 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc b/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc index 94bd98e47..9efd3d6cf 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 18f4b562f..274b04037 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.html b/tests/results/test_namespace/04_5disabled_calculation_optional_default.html index f4be8b394..7bb5117b5 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.html +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.html @@ -4,6 +4,8 @@ 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 2a3f25e62..893ae5da8 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false | diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh index 776329d32..a88e6fa08 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable.adoc index 244326c84..89f26cdca 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 9dd173f3a..95071d2b8 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.html b/tests/results/test_namespace/04_5disabled_calculation_variable.html index 4fe64a89c..dcb70ee9b 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.html @@ -4,6 +4,8 @@ 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 bfa21a7e6..e396a0c39 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.sh b/tests/results/test_namespace/04_5disabled_calculation_variable.sh index 5766af364..fddf8ddbc 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc index 98cd1d4c1..27f79cad1 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 75fba6f5f..83cb43f27 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.html b/tests/results/test_namespace/04_5disabled_calculation_variable10.html index c6e92e2c4..7ae2c0d14 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.html @@ -4,6 +4,8 @@ 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 03df45f2d..97d3cae47 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace/04_5disabled_calculation_variable10.sh index 101e6add8..98f7a83dd 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc index 98cd1d4c1..27f79cad1 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 75fba6f5f..83cb43f27 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.html b/tests/results/test_namespace/04_5disabled_calculation_variable2.html index c6e92e2c4..7ae2c0d14 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.html @@ -4,6 +4,8 @@ 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 03df45f2d..97d3cae47 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace/04_5disabled_calculation_variable2.sh index 101e6add8..98f7a83dd 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc index 66ccacae3..91b8f750d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 45cbfcb4b..2c4933b36 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.html b/tests/results/test_namespace/04_5disabled_calculation_variable3.html index 410e30437..241553e3c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.html @@ -4,6 +4,8 @@ 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 e668edf20..e8fa9718e 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace/04_5disabled_calculation_variable3.sh index b39c7e098..00aa6b4e2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc index 048764f95..736effdf4 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 e4f89db95..602b6ec45 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.html b/tests/results/test_namespace/04_5disabled_calculation_variable4.html index a5b38c365..8d159e423 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.html @@ -4,6 +4,8 @@ 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 6f0650a46..f6689f506 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace/04_5disabled_calculation_variable4.sh index 51310afb1..e1aa4a701 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc index e9634d700..7c5d10172 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 7889b5f53..df28ef934 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.html b/tests/results/test_namespace/04_5disabled_calculation_variable5.html index fc1bfbfb2..5f062df84 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.html @@ -4,6 +4,8 @@ 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 177e0e87c..01ae5776c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace/04_5disabled_calculation_variable5.sh index 56d76bf69..8bace849d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc index e9634d700..7c5d10172 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 7889b5f53..df28ef934 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.html b/tests/results/test_namespace/04_5disabled_calculation_variable6.html index fc1bfbfb2..5f062df84 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.html @@ -4,6 +4,8 @@ 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 177e0e87c..01ae5776c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace/04_5disabled_calculation_variable6.sh index 56d76bf69..8bace849d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc index 244326c84..89f26cdca 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 9dd173f3a..95071d2b8 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.html b/tests/results/test_namespace/04_5disabled_calculation_variable7.html index 4fe64a89c..dcb70ee9b 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.html @@ -4,6 +4,8 @@ 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 bfa21a7e6..e396a0c39 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace/04_5disabled_calculation_variable7.sh index 5766af364..fddf8ddbc 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable9.adoc index e9634d700..7c5d10172 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 7889b5f53..df28ef934 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.html b/tests/results/test_namespace/04_5disabled_calculation_variable9.html index fc1bfbfb2..5f062df84 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.html @@ -4,6 +4,8 @@ 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 177e0e87c..01ae5776c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace/04_5disabled_calculation_variable9.sh index 56d76bf69..8bace849d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc index 7b29986cc..d7e9fdbc2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 c6a2e7de1..411f5fc12 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html index f768f74aa..71342a6d3 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html @@ -4,6 +4,8 @@ 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 8d0612546..91c68e744 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                                 | Description                                                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh index d5f7e8451..84162cda0 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5hidden_calculation.adoc b/tests/results/test_namespace/04_5hidden_calculation.adoc index ebdd22b24..068f22807 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.adoc +++ b/tests/results/test_namespace/04_5hidden_calculation.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 8047f02f8..9b04c66a2 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md +++ b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5hidden_calculation.html b/tests/results/test_namespace/04_5hidden_calculation.html index b4b643bed..1ef534b55 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.html +++ b/tests/results/test_namespace/04_5hidden_calculation.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/04_5hidden_calculation.md b/tests/results/test_namespace/04_5hidden_calculation.md index cb3e524d7..c08ab4593 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.md +++ b/tests/results/test_namespace/04_5hidden_calculation.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The condition.
**Default**: no | diff --git a/tests/results/test_namespace/04_5hidden_calculation.sh b/tests/results/test_namespace/04_5hidden_calculation.sh index 00deeafd6..201a35e18 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.sh +++ b/tests/results/test_namespace/04_5hidden_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5hidden_calculation2.adoc b/tests/results/test_namespace/04_5hidden_calculation2.adoc index 6655e272c..37548e100 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.adoc +++ b/tests/results/test_namespace/04_5hidden_calculation2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 f13cf00e5..6f0f7c934 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md +++ b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5hidden_calculation2.html b/tests/results/test_namespace/04_5hidden_calculation2.html index 230dbfbbd..5eae96280 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.html +++ b/tests/results/test_namespace/04_5hidden_calculation2.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/04_5hidden_calculation2.md b/tests/results/test_namespace/04_5hidden_calculation2.md index ad157def2..5fa8fd0b0 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.md +++ b/tests/results/test_namespace/04_5hidden_calculation2.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no | diff --git a/tests/results/test_namespace/04_5hidden_calculation2.sh b/tests/results/test_namespace/04_5hidden_calculation2.sh index 51875be8e..e87a513d4 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.sh +++ b/tests/results/test_namespace/04_5hidden_calculation2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.adoc b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.adoc index 234bd1b55..d58aa0ce9 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.adoc +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 28f4e1382..055a59062 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.html b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.html index 871d379c7..2387f8ade 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.html +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.html @@ -4,6 +4,8 @@ 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 b62eb8e83..49211aa84 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no | diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh index 8cc6bba39..8f56a889f 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5validators.adoc b/tests/results/test_namespace/04_5validators.adoc index 1c7267bfa..2bfd0bc5a 100644 --- a/tests/results/test_namespace/04_5validators.adoc +++ b/tests/results/test_namespace/04_5validators.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/04_5validators.gitlab.md b/tests/results/test_namespace/04_5validators.gitlab.md index 9bb9ba1be..ab94c6161 100644 --- a/tests/results/test_namespace/04_5validators.gitlab.md +++ b/tests/results/test_namespace/04_5validators.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/04_5validators.html b/tests/results/test_namespace/04_5validators.html index eba2d366c..ba0d852ba 100644 --- a/tests/results/test_namespace/04_5validators.html +++ b/tests/results/test_namespace/04_5validators.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/04_5validators.md b/tests/results/test_namespace/04_5validators.md index b31ce267f..c67b0e509 100644 --- a/tests/results/test_namespace/04_5validators.md +++ b/tests/results/test_namespace/04_5validators.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                 | Description                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An integer.
**Validator**: the max value is 100 | diff --git a/tests/results/test_namespace/04_5validators.sh b/tests/results/test_namespace/04_5validators.sh index 5222fa929..c67608d34 100644 --- a/tests/results/test_namespace/04_5validators.sh +++ b/tests/results/test_namespace/04_5validators.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5validators_differ.adoc b/tests/results/test_namespace/04_5validators_differ.adoc index b58ec043f..c7d145c64 100644 --- a/tests/results/test_namespace/04_5validators_differ.adoc +++ b/tests/results/test_namespace/04_5validators_differ.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 ec1461eb0..a8dd4878a 100644 --- a/tests/results/test_namespace/04_5validators_differ.gitlab.md +++ b/tests/results/test_namespace/04_5validators_differ.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5validators_differ.html b/tests/results/test_namespace/04_5validators_differ.html index 5f2f05595..37d9a4588 100644 --- a/tests/results/test_namespace/04_5validators_differ.html +++ b/tests/results/test_namespace/04_5validators_differ.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_differ.md b/tests/results/test_namespace/04_5validators_differ.md index 6e2e9a608..05243875f 100644 --- a/tests/results/test_namespace/04_5validators_differ.md +++ b/tests/results/test_namespace/04_5validators_differ.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Validator**: var1 must be different than var2
**Default**: oui
**Example**: another_value | diff --git a/tests/results/test_namespace/04_5validators_differ.sh b/tests/results/test_namespace/04_5validators_differ.sh index 66d8a7515..9a44aa1ed 100644 --- a/tests/results/test_namespace/04_5validators_differ.sh +++ b/tests/results/test_namespace/04_5validators_differ.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5validators_multi.adoc b/tests/results/test_namespace/04_5validators_multi.adoc index 54eef78da..2dd12f535 100644 --- a/tests/results/test_namespace/04_5validators_multi.adoc +++ b/tests/results/test_namespace/04_5validators_multi.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 c54fe60cd..712976bcd 100644 --- a/tests/results/test_namespace/04_5validators_multi.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5validators_multi.html b/tests/results/test_namespace/04_5validators_multi.html index 9c255f8c8..d935c6a8a 100644 --- a/tests/results/test_namespace/04_5validators_multi.html +++ b/tests/results/test_namespace/04_5validators_multi.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_multi.md b/tests/results/test_namespace/04_5validators_multi.md index 2aace36dc..759f57761 100644 --- a/tests/results/test_namespace/04_5validators_multi.md +++ b/tests/results/test_namespace/04_5validators_multi.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Validator**: check length is less than 10
**Default**:
- no
- yes | diff --git a/tests/results/test_namespace/04_5validators_multi.sh b/tests/results/test_namespace/04_5validators_multi.sh index ac2500624..9c3b48af3 100644 --- a/tests/results/test_namespace/04_5validators_multi.sh +++ b/tests/results/test_namespace/04_5validators_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5validators_multi2.adoc b/tests/results/test_namespace/04_5validators_multi2.adoc index e17823304..b80a4232f 100644 --- a/tests/results/test_namespace/04_5validators_multi2.adoc +++ b/tests/results/test_namespace/04_5validators_multi2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 706ed57bd..ff3971af0 100644 --- a/tests/results/test_namespace/04_5validators_multi2.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5validators_multi2.html b/tests/results/test_namespace/04_5validators_multi2.html index 244bbb52a..92754a23c 100644 --- a/tests/results/test_namespace/04_5validators_multi2.html +++ b/tests/results/test_namespace/04_5validators_multi2.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_multi2.md b/tests/results/test_namespace/04_5validators_multi2.md index de5cf0958..3cea199de 100644 --- a/tests/results/test_namespace/04_5validators_multi2.md +++ b/tests/results/test_namespace/04_5validators_multi2.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Validator**: check length is less than 3
**Default**:
- no
- yes
**Examples**:
- val1
- val2 | diff --git a/tests/results/test_namespace/04_5validators_multi2.sh b/tests/results/test_namespace/04_5validators_multi2.sh index 1a6635d10..fd6bb749a 100644 --- a/tests/results/test_namespace/04_5validators_multi2.sh +++ b/tests/results/test_namespace/04_5validators_multi2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5validators_multi3.adoc b/tests/results/test_namespace/04_5validators_multi3.adoc index 64da5fc94..62cccf29a 100644 --- a/tests/results/test_namespace/04_5validators_multi3.adoc +++ b/tests/results/test_namespace/04_5validators_multi3.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 bd325059f..0bb2f0fe4 100644 --- a/tests/results/test_namespace/04_5validators_multi3.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi3.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5validators_multi3.html b/tests/results/test_namespace/04_5validators_multi3.html index 13afc5b28..46f635c56 100644 --- a/tests/results/test_namespace/04_5validators_multi3.html +++ b/tests/results/test_namespace/04_5validators_multi3.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_multi3.md b/tests/results/test_namespace/04_5validators_multi3.md index 5541ed18a..9fa908b95 100644 --- a/tests/results/test_namespace/04_5validators_multi3.md +++ b/tests/results/test_namespace/04_5validators_multi3.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Validator**: value must be equal to index
**Default**:
- 0
- 1
- 2
**Example**: 0 | diff --git a/tests/results/test_namespace/04_5validators_multi3.sh b/tests/results/test_namespace/04_5validators_multi3.sh index d0857eadd..3815215a7 100644 --- a/tests/results/test_namespace/04_5validators_multi3.sh +++ b/tests/results/test_namespace/04_5validators_multi3.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5validators_warnings.adoc b/tests/results/test_namespace/04_5validators_warnings.adoc index 6d45672e5..2c971ee65 100644 --- a/tests/results/test_namespace/04_5validators_warnings.adoc +++ b/tests/results/test_namespace/04_5validators_warnings.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 6e06d7f97..dfa699a92 100644 --- a/tests/results/test_namespace/04_5validators_warnings.gitlab.md +++ b/tests/results/test_namespace/04_5validators_warnings.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5validators_warnings.html b/tests/results/test_namespace/04_5validators_warnings.html index 77cf14294..f304bc392 100644 --- a/tests/results/test_namespace/04_5validators_warnings.html +++ b/tests/results/test_namespace/04_5validators_warnings.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_warnings.md b/tests/results/test_namespace/04_5validators_warnings.md index 98e2c47d3..01fca1061 100644 --- a/tests/results/test_namespace/04_5validators_warnings.md +++ b/tests/results/test_namespace/04_5validators_warnings.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An integer.
**Validator**: the max value is 100
**Default**: 1000 | diff --git a/tests/results/test_namespace/04_5validators_warnings.sh b/tests/results/test_namespace/04_5validators_warnings.sh index 6ceb9e1f2..b2cdea21d 100644 --- a/tests/results/test_namespace/04_5validators_warnings.sh +++ b/tests/results/test_namespace/04_5validators_warnings.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/04_5validators_warnings_all.adoc b/tests/results/test_namespace/04_5validators_warnings_all.adoc index 13089ede9..eed183440 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.adoc +++ b/tests/results/test_namespace/04_5validators_warnings_all.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 fa57a6f87..69ca4223d 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md +++ b/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/04_5validators_warnings_all.html b/tests/results/test_namespace/04_5validators_warnings_all.html index eee023013..98de1abb8 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.html +++ b/tests/results/test_namespace/04_5validators_warnings_all.html @@ -4,6 +4,8 @@ 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 02b59c9c2..abf6ec0ea 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.md +++ b/tests/results/test_namespace/04_5validators_warnings_all.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An integer.
**Validators**:
- the minimum value is 10
- the maximum value is 100
**Default**: 1000 | diff --git a/tests/results/test_namespace/04_5validators_warnings_all.sh b/tests/results/test_namespace/04_5validators_warnings_all.sh index 3ceed91e1..aca807d09 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.sh +++ b/tests/results/test_namespace/04_5validators_warnings_all.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/05_0multi_not_uniq.adoc b/tests/results/test_namespace/05_0multi_not_uniq.adoc index 59cbc02de..388b1f788 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.adoc +++ b/tests/results/test_namespace/05_0multi_not_uniq.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 e7ad1647f..70c68b843 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md +++ b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/05_0multi_not_uniq.html b/tests/results/test_namespace/05_0multi_not_uniq.html index d75824401..2dcb89044 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.html +++ b/tests/results/test_namespace/05_0multi_not_uniq.html @@ -4,6 +4,8 @@ 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 ca4a70bfb..24f4119c2 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.md +++ b/tests/results/test_namespace/05_0multi_not_uniq.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A variable.
**Default**:
- non | diff --git a/tests/results/test_namespace/05_0multi_not_uniq.sh b/tests/results/test_namespace/05_0multi_not_uniq.sh index e3f21150d..b5622f88f 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.sh +++ b/tests/results/test_namespace/05_0multi_not_uniq.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/05_0multi_uniq.adoc b/tests/results/test_namespace/05_0multi_uniq.adoc index e35263726..f46f57cb9 100644 --- a/tests/results/test_namespace/05_0multi_uniq.adoc +++ b/tests/results/test_namespace/05_0multi_uniq.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 7075e1fff..0cadcee94 100644 --- a/tests/results/test_namespace/05_0multi_uniq.gitlab.md +++ b/tests/results/test_namespace/05_0multi_uniq.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/05_0multi_uniq.html b/tests/results/test_namespace/05_0multi_uniq.html index ad1e267ac..00264900d 100644 --- a/tests/results/test_namespace/05_0multi_uniq.html +++ b/tests/results/test_namespace/05_0multi_uniq.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/05_0multi_uniq.md b/tests/results/test_namespace/05_0multi_uniq.md index 8f79016f4..b45685ab5 100644 --- a/tests/results/test_namespace/05_0multi_uniq.md +++ b/tests/results/test_namespace/05_0multi_uniq.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- non | diff --git a/tests/results/test_namespace/05_0multi_uniq.sh b/tests/results/test_namespace/05_0multi_uniq.sh index 1ecacbe3f..cf0427d02 100644 --- a/tests/results/test_namespace/05_0multi_uniq.sh +++ b/tests/results/test_namespace/05_0multi_uniq.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/12_1auto_save_expert.adoc b/tests/results/test_namespace/12_1auto_save_expert.adoc index 658ddbee2..39d1979a8 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.adoc +++ b/tests/results/test_namespace/12_1auto_save_expert.adoc @@ -4,6 +4,8 @@ `advanced` + + [cols="1a,1a"] |==== | 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 87525f1cf..4c5395ac2 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md +++ b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`advanced` +**rougail**
`advanced` >>> diff --git a/tests/results/test_namespace/12_1auto_save_expert.html b/tests/results/test_namespace/12_1auto_save_expert.html index 24e244e2d..fc55dc0c5 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.html +++ b/tests/results/test_namespace/12_1auto_save_expert.html @@ -4,6 +4,8 @@ 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 777333a9c..025ec2e12 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.md +++ b/tests/results/test_namespace/12_1auto_save_expert.md @@ -4,6 +4,8 @@ `advanced` + + | Variable                                                                                                                   | Description                                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` `mandatory` `auto modified` | A variable.
**Default**: no | diff --git a/tests/results/test_namespace/12_1auto_save_expert.sh b/tests/results/test_namespace/12_1auto_save_expert.sh index 00ea7c466..b9e07d13f 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.sh +++ b/tests/results/test_namespace/12_1auto_save_expert.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_0redefine_description.adoc b/tests/results/test_namespace/16_0redefine_description.adoc index 4581fa399..c738f9208 100644 --- a/tests/results/test_namespace/16_0redefine_description.adoc +++ b/tests/results/test_namespace/16_0redefine_description.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 4a78ebbbd..305e00774 100644 --- a/tests/results/test_namespace/16_0redefine_description.gitlab.md +++ b/tests/results/test_namespace/16_0redefine_description.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/16_0redefine_description.html b/tests/results/test_namespace/16_0redefine_description.html index 2fc468e2a..bc0afd8ec 100644 --- a/tests/results/test_namespace/16_0redefine_description.html +++ b/tests/results/test_namespace/16_0redefine_description.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/16_0redefine_description.md b/tests/results/test_namespace/16_0redefine_description.md index 0308b395b..b794549af 100644 --- a/tests/results/test_namespace/16_0redefine_description.md +++ b/tests/results/test_namespace/16_0redefine_description.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefined. | diff --git a/tests/results/test_namespace/16_0redefine_description.sh b/tests/results/test_namespace/16_0redefine_description.sh index cdb208315..3679b2ae9 100644 --- a/tests/results/test_namespace/16_0redefine_description.sh +++ b/tests/results/test_namespace/16_0redefine_description.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.adoc b/tests/results/test_namespace/16_2family_redefine_calculation.adoc index fac1fa648..8d9219182 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.adoc +++ b/tests/results/test_namespace/16_2family_redefine_calculation.adoc @@ -4,6 +4,8 @@ `basic` + + === family 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 51063b526..62ac36ab1 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md +++ b/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md @@ -1,16 +1,14 @@
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.html b/tests/results/test_namespace/16_2family_redefine_calculation.html index 5fada22fb..35a55442f 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.html +++ b/tests/results/test_namespace/16_2family_redefine_calculation.html @@ -4,6 +4,8 @@ basic + +

family

rougail.family diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.md b/tests/results/test_namespace/16_2family_redefine_calculation.md index 84b1f5d2a..315f9cc8e 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.md +++ b/tests/results/test_namespace/16_2family_redefine_calculation.md @@ -4,13 +4,15 @@ `basic` + + ## family -**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_2family_redefine_calculation.sh b/tests/results/test_namespace/16_2family_redefine_calculation.sh index 6c77ed590..fdbea4593 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.sh +++ b/tests/results/test_namespace/16_2family_redefine_calculation.sh @@ -14,20 +14,18 @@ - family + family + rougail.family -  basic   disabled  - Disabled: depends on a calculation - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_3family_empty_at_ends.adoc b/tests/results/test_namespace/16_3family_empty_at_ends.adoc index e93e60f32..0d54cafe1 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.adoc +++ b/tests/results/test_namespace/16_3family_empty_at_ends.adoc @@ -4,6 +4,8 @@ `basic` + + === family 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 40a5268a4..22836b728 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,16 +1,14 @@
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.html b/tests/results/test_namespace/16_3family_empty_at_ends.html index 2db5b757a..8079cb4f1 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.html +++ b/tests/results/test_namespace/16_3family_empty_at_ends.html @@ -4,6 +4,8 @@ basic + +

family

rougail.family 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 fa8fbb449..aec625d3e 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.md +++ b/tests/results/test_namespace/16_3family_empty_at_ends.md @@ -4,11 +4,15 @@ `basic` + + ## family -**rougail.family** -`basic` + +| Informations | +|:------------| +| **rougail.family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_3family_empty_at_ends.sh b/tests/results/test_namespace/16_3family_empty_at_ends.sh index 796531476..b337d0bdb 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.sh +++ b/tests/results/test_namespace/16_3family_empty_at_ends.sh @@ -14,17 +14,16 @@ - family + family + rougail.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5exists_nonexists.adoc b/tests/results/test_namespace/16_5exists_nonexists.adoc index 2b86e90fb..c384eba4e 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.adoc +++ b/tests/results/test_namespace/16_5exists_nonexists.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 b733466c2..f6ae7a2d4 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md +++ b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/16_5exists_nonexists.html b/tests/results/test_namespace/16_5exists_nonexists.html index 0c9374f4c..289f112f7 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.html +++ b/tests/results/test_namespace/16_5exists_nonexists.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/16_5exists_nonexists.md b/tests/results/test_namespace/16_5exists_nonexists.md index 4db97a128..8da158329 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.md +++ b/tests/results/test_namespace/16_5exists_nonexists.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no | diff --git a/tests/results/test_namespace/16_5exists_nonexists.sh b/tests/results/test_namespace/16_5exists_nonexists.sh index a9f49bb24..518404a07 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.sh +++ b/tests/results/test_namespace/16_5exists_nonexists.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5redefine_calculation.adoc b/tests/results/test_namespace/16_5redefine_calculation.adoc index c30a8bd51..d0c6e7e16 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.adoc +++ b/tests/results/test_namespace/16_5redefine_calculation.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 263f75c57..cfe90ed79 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/16_5redefine_calculation.html b/tests/results/test_namespace/16_5redefine_calculation.html index 7d352d47e..e6b101c8d 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.html +++ b/tests/results/test_namespace/16_5redefine_calculation.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_calculation.md b/tests/results/test_namespace/16_5redefine_calculation.md index 49d890a8d..eb2bd7baf 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.md +++ b/tests/results/test_namespace/16_5redefine_calculation.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: returns yes | diff --git a/tests/results/test_namespace/16_5redefine_calculation.sh b/tests/results/test_namespace/16_5redefine_calculation.sh index 07acf1b7c..3f0fd3893 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.sh +++ b/tests/results/test_namespace/16_5redefine_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5redefine_choice.adoc b/tests/results/test_namespace/16_5redefine_choice.adoc index 9cdeabf88..e124fc86b 100644 --- a/tests/results/test_namespace/16_5redefine_choice.adoc +++ b/tests/results/test_namespace/16_5redefine_choice.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 0b696191d..8d1bf4839 100644 --- a/tests/results/test_namespace/16_5redefine_choice.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_choice.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/16_5redefine_choice.html b/tests/results/test_namespace/16_5redefine_choice.html index dbe798065..f7c6b6ae9 100644 --- a/tests/results/test_namespace/16_5redefine_choice.html +++ b/tests/results/test_namespace/16_5redefine_choice.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_choice.md b/tests/results/test_namespace/16_5redefine_choice.md index c7150edb9..de2623840 100644 --- a/tests/results/test_namespace/16_5redefine_choice.md +++ b/tests/results/test_namespace/16_5redefine_choice.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
- a
- b | diff --git a/tests/results/test_namespace/16_5redefine_choice.sh b/tests/results/test_namespace/16_5redefine_choice.sh index 6ff6af6b3..79215d4bc 100644 --- a/tests/results/test_namespace/16_5redefine_choice.sh +++ b/tests/results/test_namespace/16_5redefine_choice.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5redefine_default.adoc b/tests/results/test_namespace/16_5redefine_default.adoc index 2ec35fb8d..53cbf27c8 100644 --- a/tests/results/test_namespace/16_5redefine_default.adoc +++ b/tests/results/test_namespace/16_5redefine_default.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 a4a2f3a9e..e13e85c18 100644 --- a/tests/results/test_namespace/16_5redefine_default.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_default.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/16_5redefine_default.html b/tests/results/test_namespace/16_5redefine_default.html index 4d57db396..bcdbb3f1f 100644 --- a/tests/results/test_namespace/16_5redefine_default.html +++ b/tests/results/test_namespace/16_5redefine_default.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_default.md b/tests/results/test_namespace/16_5redefine_default.md index be793b896..fe2cfc1a0 100644 --- a/tests/results/test_namespace/16_5redefine_default.md +++ b/tests/results/test_namespace/16_5redefine_default.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: yes | diff --git a/tests/results/test_namespace/16_5redefine_default.sh b/tests/results/test_namespace/16_5redefine_default.sh index 68ade6e55..f21df6c12 100644 --- a/tests/results/test_namespace/16_5redefine_default.sh +++ b/tests/results/test_namespace/16_5redefine_default.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.adoc b/tests/results/test_namespace/16_5redefine_default_calculation.adoc index e9634d700..7c5d10172 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.adoc +++ b/tests/results/test_namespace/16_5redefine_default_calculation.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 7889b5f53..df28ef934 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.html b/tests/results/test_namespace/16_5redefine_default_calculation.html index fc1bfbfb2..5f062df84 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.html +++ b/tests/results/test_namespace/16_5redefine_default_calculation.html @@ -4,6 +4,8 @@ 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 177e0e87c..01ae5776c 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.md +++ b/tests/results/test_namespace/16_5redefine_default_calculation.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.sh b/tests/results/test_namespace/16_5redefine_default_calculation.sh index 56d76bf69..8bace849d 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace/16_5redefine_default_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5redefine_family.adoc b/tests/results/test_namespace/16_5redefine_family.adoc index 470b739d8..6566a7fbc 100644 --- a/tests/results/test_namespace/16_5redefine_family.adoc +++ b/tests/results/test_namespace/16_5redefine_family.adoc @@ -4,6 +4,8 @@ `basic` + + === New description diff --git a/tests/results/test_namespace/16_5redefine_family.gitlab.md b/tests/results/test_namespace/16_5redefine_family.gitlab.md index 8155c708a..d1d4d5eaa 100644 --- a/tests/results/test_namespace/16_5redefine_family.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_family.gitlab.md @@ -1,16 +1,14 @@
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.html b/tests/results/test_namespace/16_5redefine_family.html index 2f7603513..64abde4be 100644 --- a/tests/results/test_namespace/16_5redefine_family.html +++ b/tests/results/test_namespace/16_5redefine_family.html @@ -4,6 +4,8 @@ basic + +

New description

rougail.family diff --git a/tests/results/test_namespace/16_5redefine_family.md b/tests/results/test_namespace/16_5redefine_family.md index bfd345e47..ba2ffead4 100644 --- a/tests/results/test_namespace/16_5redefine_family.md +++ b/tests/results/test_namespace/16_5redefine_family.md @@ -4,11 +4,15 @@ `basic` + + ## New description -**rougail.family** -`basic` + +| Informations | +|:------------| +| **rougail.family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_family.sh b/tests/results/test_namespace/16_5redefine_family.sh index d1aa2cdc2..7f876fc73 100644 --- a/tests/results/test_namespace/16_5redefine_family.sh +++ b/tests/results/test_namespace/16_5redefine_family.sh @@ -14,17 +14,16 @@ - New description + New description + rougail.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5redefine_help.adoc b/tests/results/test_namespace/16_5redefine_help.adoc index 6480bc2ed..583fc7ee9 100644 --- a/tests/results/test_namespace/16_5redefine_help.adoc +++ b/tests/results/test_namespace/16_5redefine_help.adoc @@ -4,13 +4,15 @@ `basic` -=== A family -Redefine help family ok. + +=== A family **rougail.family** +Redefine help family ok. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/16_5redefine_help.gitlab.md b/tests/results/test_namespace/16_5redefine_help.gitlab.md index e1d2219bd..f7f038a75 100644 --- a/tests/results/test_namespace/16_5redefine_help.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_help.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A family -Redefine help family ok. - >>> [!note] Informations -**rougail.family**
`basic` - - +
**rougail.family**
Redefine help family ok.
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_help.html b/tests/results/test_namespace/16_5redefine_help.html index 792cacab0..025d701a2 100644 --- a/tests/results/test_namespace/16_5redefine_help.html +++ b/tests/results/test_namespace/16_5redefine_help.html @@ -4,12 +4,14 @@ basic + +

A family

-Redefine help family ok. - 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 b02c81fd5..c7738c8d3 100644 --- a/tests/results/test_namespace/16_5redefine_help.md +++ b/tests/results/test_namespace/16_5redefine_help.md @@ -4,13 +4,15 @@ `basic` + + ## A family -Redefine help family ok. -**rougail.family** -`basic` +| Informations | +|:------------| +| **rougail.family**
Redefine help family ok.
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_help.sh b/tests/results/test_namespace/16_5redefine_help.sh index bdb01ccd6..020df2e42 100644 --- a/tests/results/test_namespace/16_5redefine_help.sh +++ b/tests/results/test_namespace/16_5redefine_help.sh @@ -14,20 +14,18 @@ + + A family -Redefine help family ok. - - - rougail.family +Redefine help family ok.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5redefine_multi.adoc b/tests/results/test_namespace/16_5redefine_multi.adoc index e35263726..f46f57cb9 100644 --- a/tests/results/test_namespace/16_5redefine_multi.adoc +++ b/tests/results/test_namespace/16_5redefine_multi.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 7075e1fff..0cadcee94 100644 --- a/tests/results/test_namespace/16_5redefine_multi.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/16_5redefine_multi.html b/tests/results/test_namespace/16_5redefine_multi.html index ad1e267ac..00264900d 100644 --- a/tests/results/test_namespace/16_5redefine_multi.html +++ b/tests/results/test_namespace/16_5redefine_multi.html @@ -4,6 +4,8 @@ standard + +
diff --git a/tests/results/test_namespace/16_5redefine_multi.md b/tests/results/test_namespace/16_5redefine_multi.md index 8f79016f4..b45685ab5 100644 --- a/tests/results/test_namespace/16_5redefine_multi.md +++ b/tests/results/test_namespace/16_5redefine_multi.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- non | diff --git a/tests/results/test_namespace/16_5redefine_multi.sh b/tests/results/test_namespace/16_5redefine_multi.sh index 1ecacbe3f..cf0427d02 100644 --- a/tests/results/test_namespace/16_5redefine_multi.sh +++ b/tests/results/test_namespace/16_5redefine_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.adoc b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.adoc index 5492a3b53..2fb045a4c 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.adoc +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 bbc371fac..60891f012 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,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.html b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.html index 9daaaaedd..51f42b449 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.html +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.html @@ -4,6 +4,8 @@ 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 4b9863e99..2fa5a064a 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no | diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh index 42fc05390..d11d06f9d 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_5test_redefine.adoc b/tests/results/test_namespace/16_5test_redefine.adoc index b338e842f..edc939595 100644 --- a/tests/results/test_namespace/16_5test_redefine.adoc +++ b/tests/results/test_namespace/16_5test_redefine.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | 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 479bdf56f..eea4a81a7 100644 --- a/tests/results/test_namespace/16_5test_redefine.gitlab.md +++ b/tests/results/test_namespace/16_5test_redefine.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/16_5test_redefine.html b/tests/results/test_namespace/16_5test_redefine.html index 56218cb83..aadb1c30b 100644 --- a/tests/results/test_namespace/16_5test_redefine.html +++ b/tests/results/test_namespace/16_5test_redefine.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/16_5test_redefine.md b/tests/results/test_namespace/16_5test_redefine.md index 0dd02c483..fbca30930 100644 --- a/tests/results/test_namespace/16_5test_redefine.md +++ b/tests/results/test_namespace/16_5test_redefine.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no
**Example**: test1 | diff --git a/tests/results/test_namespace/16_5test_redefine.sh b/tests/results/test_namespace/16_5test_redefine.sh index 28ee1bbc4..43ab195f3 100644 --- a/tests/results/test_namespace/16_5test_redefine.sh +++ b/tests/results/test_namespace/16_5test_redefine.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_6choice_redefine.adoc b/tests/results/test_namespace/16_6choice_redefine.adoc index fde36c02f..d34ec0341 100644 --- a/tests/results/test_namespace/16_6choice_redefine.adoc +++ b/tests/results/test_namespace/16_6choice_redefine.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | 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 e6e3a2410..1a8794585 100644 --- a/tests/results/test_namespace/16_6choice_redefine.gitlab.md +++ b/tests/results/test_namespace/16_6choice_redefine.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/16_6choice_redefine.html b/tests/results/test_namespace/16_6choice_redefine.html index 97c995ad5..b39dc066c 100644 --- a/tests/results/test_namespace/16_6choice_redefine.html +++ b/tests/results/test_namespace/16_6choice_redefine.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/16_6choice_redefine.md b/tests/results/test_namespace/16_6choice_redefine.md index fadf85510..dcc155625 100644 --- a/tests/results/test_namespace/16_6choice_redefine.md +++ b/tests/results/test_namespace/16_6choice_redefine.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.
**Choices**:
- a
- c **← (default)** | diff --git a/tests/results/test_namespace/16_6choice_redefine.sh b/tests/results/test_namespace/16_6choice_redefine.sh index ec14883f5..f9ea0c6e4 100644 --- a/tests/results/test_namespace/16_6choice_redefine.sh +++ b/tests/results/test_namespace/16_6choice_redefine.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16_6exists_redefine_family.adoc b/tests/results/test_namespace/16_6exists_redefine_family.adoc index 0639a2a7d..cc53cd0b8 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.adoc +++ b/tests/results/test_namespace/16_6exists_redefine_family.adoc @@ -4,6 +4,8 @@ `basic` + + === New 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 ba2d7040c..74976510d 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md +++ b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
New description >>> [!note] Informations -**rougail.family1**
`basic` - - +
**rougail.family1**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -21,9 +19,7 @@
A second family >>> [!note] Informations -**rougail.family2**
`basic` - - +
**rougail.family2**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test_namespace/16_6exists_redefine_family.html b/tests/results/test_namespace/16_6exists_redefine_family.html index ae9a263d0..8ab3e42d2 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.html +++ b/tests/results/test_namespace/16_6exists_redefine_family.html @@ -4,6 +4,8 @@ basic + +

New description

rougail.family1 diff --git a/tests/results/test_namespace/16_6exists_redefine_family.md b/tests/results/test_namespace/16_6exists_redefine_family.md index 1d1922ca3..c7ac60fab 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.md +++ b/tests/results/test_namespace/16_6exists_redefine_family.md @@ -4,11 +4,15 @@ `basic` + + ## New description -**rougail.family1** -`basic` + +| Informations | +|:------------| +| **rougail.family1**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -16,9 +20,11 @@ ## A second family -**rougail.family2** -`basic` + +| Informations | +|:------------| +| **rougail.family2**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_6exists_redefine_family.sh b/tests/results/test_namespace/16_6exists_redefine_family.sh index 44b9acb83..fbd023761 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace/16_6exists_redefine_family.sh @@ -14,17 +14,16 @@ - New description + New description + rougail.family1 -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -37,14 +36,11 @@ A second family - rougail.family2 -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/16exists_exists.adoc b/tests/results/test_namespace/16exists_exists.adoc index d3c71e01f..d89d1caa7 100644 --- a/tests/results/test_namespace/16exists_exists.adoc +++ b/tests/results/test_namespace/16exists_exists.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/16exists_exists.gitlab.md b/tests/results/test_namespace/16exists_exists.gitlab.md index 87fd422ca..d4a4e7042 100644 --- a/tests/results/test_namespace/16exists_exists.gitlab.md +++ b/tests/results/test_namespace/16exists_exists.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> diff --git a/tests/results/test_namespace/16exists_exists.html b/tests/results/test_namespace/16exists_exists.html index 52bb2b13b..fca424fd3 100644 --- a/tests/results/test_namespace/16exists_exists.html +++ b/tests/results/test_namespace/16exists_exists.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/16exists_exists.md b/tests/results/test_namespace/16exists_exists.md index e013d41ca..bb8f5e416 100644 --- a/tests/results/test_namespace/16exists_exists.md +++ b/tests/results/test_namespace/16exists_exists.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Description. | diff --git a/tests/results/test_namespace/16exists_exists.sh b/tests/results/test_namespace/16exists_exists.sh index 612243800..609b208f0 100644 --- a/tests/results/test_namespace/16exists_exists.sh +++ b/tests/results/test_namespace/16exists_exists.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_0family_append.adoc b/tests/results/test_namespace/20_0family_append.adoc index 02cbce8e4..a10b2cded 100644 --- a/tests/results/test_namespace/20_0family_append.adoc +++ b/tests/results/test_namespace/20_0family_append.adoc @@ -4,6 +4,8 @@ `basic` + + === A family diff --git a/tests/results/test_namespace/20_0family_append.gitlab.md b/tests/results/test_namespace/20_0family_append.gitlab.md index b32527fe9..7c1bf922d 100644 --- a/tests/results/test_namespace/20_0family_append.gitlab.md +++ b/tests/results/test_namespace/20_0family_append.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A family >>> [!note] Informations -**rougail.family**
`basic` - - +
**rougail.family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------| diff --git a/tests/results/test_namespace/20_0family_append.html b/tests/results/test_namespace/20_0family_append.html index 004036ec3..a269036b8 100644 --- a/tests/results/test_namespace/20_0family_append.html +++ b/tests/results/test_namespace/20_0family_append.html @@ -4,6 +4,8 @@ basic + +

A family

rougail.family diff --git a/tests/results/test_namespace/20_0family_append.md b/tests/results/test_namespace/20_0family_append.md index 2e367b700..88e106f18 100644 --- a/tests/results/test_namespace/20_0family_append.md +++ b/tests/results/test_namespace/20_0family_append.md @@ -4,11 +4,15 @@ `basic` + + ## A family -**rougail.family** -`basic` + +| Informations | +|:------------| +| **rougail.family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0family_append.sh b/tests/results/test_namespace/20_0family_append.sh index 841de6716..7e9e5413c 100644 --- a/tests/results/test_namespace/20_0family_append.sh +++ b/tests/results/test_namespace/20_0family_append.sh @@ -14,17 +14,16 @@ - A family + A family + rougail.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_0multi_family.adoc b/tests/results/test_namespace/20_0multi_family.adoc index 4d3afb0f6..af9ed565a 100644 --- a/tests/results/test_namespace/20_0multi_family.adoc +++ b/tests/results/test_namespace/20_0multi_family.adoc @@ -4,6 +4,8 @@ `standard` + + === A family diff --git a/tests/results/test_namespace/20_0multi_family.gitlab.md b/tests/results/test_namespace/20_0multi_family.gitlab.md index 0581db555..d727f867e 100644 --- a/tests/results/test_namespace/20_0multi_family.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family.gitlab.md @@ -1,23 +1,19 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A family >>> [!note] Informations -**rougail.family**
`standard` - - +
**rougail.family**
`standard` >>>
A sub family >>> [!note] Informations -**rougail.family.subfamily**
`standard` - - +
**rougail.family.subfamily**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/20_0multi_family.html b/tests/results/test_namespace/20_0multi_family.html index db031b403..28c59eb1b 100644 --- a/tests/results/test_namespace/20_0multi_family.html +++ b/tests/results/test_namespace/20_0multi_family.html @@ -4,6 +4,8 @@ standard + +

A family

rougail.family diff --git a/tests/results/test_namespace/20_0multi_family.md b/tests/results/test_namespace/20_0multi_family.md index 61d191a75..4475e4c7e 100644 --- a/tests/results/test_namespace/20_0multi_family.md +++ b/tests/results/test_namespace/20_0multi_family.md @@ -4,17 +4,23 @@ `standard` + + ## A family -**rougail.family** -`standard` + +| Informations | +|:------------| +| **rougail.family**
`standard` | ### A sub family -**rougail.family.subfamily** -`standard` + +| Informations | +|:------------| +| **rougail.family.subfamily**
`standard` | | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family.sh b/tests/results/test_namespace/20_0multi_family.sh index 9ee42cfc2..9d10d50f0 100644 --- a/tests/results/test_namespace/20_0multi_family.sh +++ b/tests/results/test_namespace/20_0multi_family.sh @@ -14,30 +14,26 @@ - A family + A family + rougail.family -  standard  - A sub family - rougail.family.subfamily -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_0multi_family_basic.adoc b/tests/results/test_namespace/20_0multi_family_basic.adoc index 1d0add1bd..f6709c21e 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.adoc +++ b/tests/results/test_namespace/20_0multi_family_basic.adoc @@ -4,6 +4,8 @@ `basic` + + === A family diff --git a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md index 89c7f0356..5a87a17ba 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md @@ -1,23 +1,19 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A family >>> [!note] Informations -**rougail.family**
`basic` - - +
**rougail.family**
`basic` >>>
A sub family >>> [!note] Informations -**rougail.family.subfamily**
`basic` - - +
**rougail.family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/20_0multi_family_basic.html b/tests/results/test_namespace/20_0multi_family_basic.html index a1f19fe44..cacfd7da1 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.html +++ b/tests/results/test_namespace/20_0multi_family_basic.html @@ -4,6 +4,8 @@ basic + +

A family

rougail.family diff --git a/tests/results/test_namespace/20_0multi_family_basic.md b/tests/results/test_namespace/20_0multi_family_basic.md index 9c55305f3..16396ea2b 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.md +++ b/tests/results/test_namespace/20_0multi_family_basic.md @@ -4,17 +4,23 @@ `basic` + + ## A family -**rougail.family** -`basic` + +| Informations | +|:------------| +| **rougail.family**
`basic` | ### A sub family -**rougail.family.subfamily** -`basic` + +| Informations | +|:------------| +| **rougail.family.subfamily**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_basic.sh b/tests/results/test_namespace/20_0multi_family_basic.sh index 6dfb4e806..e0094894c 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.sh +++ b/tests/results/test_namespace/20_0multi_family_basic.sh @@ -14,30 +14,26 @@ - A family + A family + rougail.family -  basic  - A sub family - rougail.family.subfamily -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_0multi_family_expert.adoc b/tests/results/test_namespace/20_0multi_family_expert.adoc index 5a1f5eabc..37f1e958f 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.adoc +++ b/tests/results/test_namespace/20_0multi_family_expert.adoc @@ -4,6 +4,8 @@ `advanced` + + === A family diff --git a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md index 9b4ae65fa..35e0f3cea 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md @@ -1,23 +1,19 @@
Rougail >>> [!note] Informations -**rougail**
`advanced` +**rougail**
`advanced` >>>
A family >>> [!note] Informations -**rougail.family**
`advanced` - - +
**rougail.family**
`advanced` >>>
A sub family >>> [!note] Informations -**rougail.family.subfamily**
`advanced` - - +
**rougail.family.subfamily**
`advanced` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/20_0multi_family_expert.html b/tests/results/test_namespace/20_0multi_family_expert.html index 4235701fd..7053aa777 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.html +++ b/tests/results/test_namespace/20_0multi_family_expert.html @@ -4,6 +4,8 @@ advanced + +

A family

rougail.family diff --git a/tests/results/test_namespace/20_0multi_family_expert.md b/tests/results/test_namespace/20_0multi_family_expert.md index d5c18e81c..5003aeb35 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.md +++ b/tests/results/test_namespace/20_0multi_family_expert.md @@ -4,17 +4,23 @@ `advanced` + + ## A family -**rougail.family** -`advanced` + +| Informations | +|:------------| +| **rougail.family**
`advanced` | ### A sub family -**rougail.family.subfamily** -`advanced` + +| Informations | +|:------------| +| **rougail.family.subfamily**
`advanced` | | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_expert.sh b/tests/results/test_namespace/20_0multi_family_expert.sh index 7f918f60b..4b7724dc3 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.sh +++ b/tests/results/test_namespace/20_0multi_family_expert.sh @@ -14,30 +14,26 @@ - A family + A family + rougail.family -  advanced  - A sub family - rougail.family.subfamily -  advanced  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_0multi_family_order.adoc b/tests/results/test_namespace/20_0multi_family_order.adoc index d120e61cb..24f6f3c7f 100644 --- a/tests/results/test_namespace/20_0multi_family_order.adoc +++ b/tests/results/test_namespace/20_0multi_family_order.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/20_0multi_family_order.gitlab.md b/tests/results/test_namespace/20_0multi_family_order.gitlab.md index a1a1242e3..8fb211594 100644 --- a/tests/results/test_namespace/20_0multi_family_order.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_order.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -12,9 +12,7 @@
A family >>> [!note] Informations -**rougail.family**
`basic` - - +
**rougail.family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| @@ -23,9 +21,7 @@
A sub family >>> [!note] Informations -**rougail.family.subfamily**
`basic` - - +
**rougail.family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/20_0multi_family_order.html b/tests/results/test_namespace/20_0multi_family_order.html index dc1861fbe..2fd647be0 100644 --- a/tests/results/test_namespace/20_0multi_family_order.html +++ b/tests/results/test_namespace/20_0multi_family_order.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/20_0multi_family_order.md b/tests/results/test_namespace/20_0multi_family_order.md index 300ff5cba..6ed05f00a 100644 --- a/tests/results/test_namespace/20_0multi_family_order.md +++ b/tests/results/test_namespace/20_0multi_family_order.md @@ -4,15 +4,19 @@ `basic` + + | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | ## A family -**rougail.family** -`basic` + +| Informations | +|:------------| +| **rougail.family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,9 +24,11 @@ ### A sub family -**rougail.family.subfamily** -`basic` + +| Informations | +|:------------| +| **rougail.family.subfamily**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_order.sh b/tests/results/test_namespace/20_0multi_family_order.sh index 25b00fac5..bcd408d3a 100644 --- a/tests/results/test_namespace/20_0multi_family_order.sh +++ b/tests/results/test_namespace/20_0multi_family_order.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,14 +25,11 @@ A family - rougail.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -42,14 +41,11 @@ A sub family - rougail.family.subfamily -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.adoc b/tests/results/test_namespace/20_0validators_differ_redefine.adoc index 81476f5bc..26f61529b 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.adoc +++ b/tests/results/test_namespace/20_0validators_differ_redefine.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md index 3109752d0..b0d06e652 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md +++ b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.html b/tests/results/test_namespace/20_0validators_differ_redefine.html index c87314aef..05a6b3e12 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.html +++ b/tests/results/test_namespace/20_0validators_differ_redefine.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.md b/tests/results/test_namespace/20_0validators_differ_redefine.md index e345d912d..0f05e5516 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.md +++ b/tests/results/test_namespace/20_0validators_differ_redefine.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no | diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.sh b/tests/results/test_namespace/20_0validators_differ_redefine.sh index 33cadb0b1..e65623271 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.sh +++ b/tests/results/test_namespace/20_0validators_differ_redefine.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.adoc b/tests/results/test_namespace/20_2family_looks_like_dynamic.adoc index 9191318e6..c62606ebc 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.adoc +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.adoc @@ -4,6 +4,8 @@ `standard` + + === my_family diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md index adbc80e8c..dc442fe99 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
my_family >>> [!note] Informations -**rougail.my_family**
`standard` - - +
**rougail.my_family**
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.html b/tests/results/test_namespace/20_2family_looks_like_dynamic.html index cf02a5fa1..ca2f311f4 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.html +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.html @@ -4,6 +4,8 @@ standard + +

my_family

rougail.my_family diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.md b/tests/results/test_namespace/20_2family_looks_like_dynamic.md index be8fa515f..327c4d423 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.md +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.md @@ -4,11 +4,15 @@ `standard` + + ## my_family -**rougail.my_family** -`standard` + +| Informations | +|:------------| +| **rougail.my_family**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace/20_2family_looks_like_dynamic.sh index 9abfadd0d..af2a16b17 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.sh +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.sh @@ -14,17 +14,16 @@ - my_family + my_family + rougail.my_family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.adoc b/tests/results/test_namespace/20_2family_looks_like_variable.adoc index 235e20581..87618064c 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.adoc +++ b/tests/results/test_namespace/20_2family_looks_like_variable.adoc @@ -4,6 +4,8 @@ `standard` + + === my_family diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md index 4d9833c20..c19820912 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md +++ b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
my_family >>> [!note] Informations -**rougail.my_family**
`standard` - - +
**rougail.my_family**
`standard` >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.html b/tests/results/test_namespace/20_2family_looks_like_variable.html index ce05c22fb..af15691fd 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.html +++ b/tests/results/test_namespace/20_2family_looks_like_variable.html @@ -4,6 +4,8 @@ standard + +

my_family

rougail.my_family diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.md b/tests/results/test_namespace/20_2family_looks_like_variable.md index 155d8e37a..9b08c0464 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.md +++ b/tests/results/test_namespace/20_2family_looks_like_variable.md @@ -4,11 +4,15 @@ `standard` + + ## my_family -**rougail.my_family** -`standard` + +| Informations | +|:------------| +| **rougail.my_family**
`standard` | | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.sh b/tests/results/test_namespace/20_2family_looks_like_variable.sh index 3803197d6..3b6b3aa5d 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.sh +++ b/tests/results/test_namespace/20_2family_looks_like_variable.sh @@ -14,17 +14,16 @@ - my_family + my_family + rougail.my_family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/20_9default_information_parent.adoc b/tests/results/test_namespace/20_9default_information_parent.adoc index cdb574aaf..13e885bfd 100644 --- a/tests/results/test_namespace/20_9default_information_parent.adoc +++ b/tests/results/test_namespace/20_9default_information_parent.adoc @@ -4,6 +4,8 @@ `basic` + + === family diff --git a/tests/results/test_namespace/20_9default_information_parent.gitlab.md b/tests/results/test_namespace/20_9default_information_parent.gitlab.md index 275e4612e..804ccfc5e 100644 --- a/tests/results/test_namespace/20_9default_information_parent.gitlab.md +++ b/tests/results/test_namespace/20_9default_information_parent.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
family >>> [!note] Informations -**rougail.family**
`basic` - - +
**rougail.family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_9default_information_parent.html b/tests/results/test_namespace/20_9default_information_parent.html index 00bbd1601..039d6f9c1 100644 --- a/tests/results/test_namespace/20_9default_information_parent.html +++ b/tests/results/test_namespace/20_9default_information_parent.html @@ -4,6 +4,8 @@ basic + +

family

rougail.family diff --git a/tests/results/test_namespace/20_9default_information_parent.md b/tests/results/test_namespace/20_9default_information_parent.md index 58fefac82..681fe3ce9 100644 --- a/tests/results/test_namespace/20_9default_information_parent.md +++ b/tests/results/test_namespace/20_9default_information_parent.md @@ -4,11 +4,15 @@ `basic` + + ## family -**rougail.family** -`basic` + +| Informations | +|:------------| +| **rougail.family**
`basic` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_9default_information_parent.sh b/tests/results/test_namespace/20_9default_information_parent.sh index 3e1d32bd4..a660a561f 100644 --- a/tests/results/test_namespace/20_9default_information_parent.sh +++ b/tests/results/test_namespace/20_9default_information_parent.sh @@ -14,17 +14,16 @@ - family + family + rougail.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_0family_hidden_condition.adoc b/tests/results/test_namespace/24_0family_hidden_condition.adoc index 4eca6fcc8..1a5d624f3 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.adoc +++ b/tests/results/test_namespace/24_0family_hidden_condition.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md index 1e4ab1c6a..030fbea6c 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -12,9 +12,7 @@
Possibly hidden family >>> [!note] Informations -**rougail.family**
`basic` *`hidden`* - -**Hidden**: if condition is yes +
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition.html b/tests/results/test_namespace/24_0family_hidden_condition.html index 202e760bb..50327c5f1 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.html +++ b/tests/results/test_namespace/24_0family_hidden_condition.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_condition.md b/tests/results/test_namespace/24_0family_hidden_condition.md index 85f8c82cf..5c7c7f6ef 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.md +++ b/tests/results/test_namespace/24_0family_hidden_condition.md @@ -4,17 +4,19 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: no | ## Possibly hidden family -**rougail.family** -`basic` *`hidden`* -**Hidden**: if condition is yes +| Informations | +|:------------| +| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition.sh b/tests/results/test_namespace/24_0family_hidden_condition.sh index 3a6f316c3..ecb7a2089 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,17 +25,13 @@ Possibly hidden family - rougail.family -  basic   hidden  - Hidden: if condition is yes - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.adoc b/tests/results/test_namespace/24_0family_hidden_condition_boolean.adoc index 3d3df88fd..05240b50b 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.adoc +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md index bbfc4cc5b..f4de3e722 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -12,9 +12,7 @@
A family >>> [!note] Informations -**rougail.family**
`standard` *`hidden`* - -**Hidden**: if not condition +
**rougail.family**
`standard` *`hidden`*
**Hidden**: if not condition >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.html b/tests/results/test_namespace/24_0family_hidden_condition_boolean.html index a94cfcefd..520ef5b94 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.html +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.md b/tests/results/test_namespace/24_0family_hidden_condition_boolean.md index ba518159f..a41bf85db 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.md @@ -4,17 +4,19 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A conditional variable.
**Default**: false | ## A family -**rougail.family** -`standard` *`hidden`* -**Hidden**: if not condition +| Informations | +|:------------| +| **rougail.family**
`standard` *`hidden`*
**Hidden**: if not condition | | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh index 3b1d4214d..e2b0cae2b 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,17 +25,13 @@ A family - rougail.family -  standard   hidden  - Hidden: if not condition - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.adoc b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.adoc index bb5b4c44f..5e7c5ac65 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.adoc +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md index 09bd870a6..0256c6771 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -12,16 +12,12 @@
Possibly hidden family >>> [!note] Informations -**rougail.family**
`basic` *`hidden`* - -**Hidden**: if condition is yes +
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes >>>
subfamily >>> [!note] Informations -**rougail.family.subfamily**
`basic` - - +
**rougail.family.subfamily**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.html b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.html index 3e0502ac8..031bb6d32 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.html +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md index 38cec007e..4f263a1b0 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md @@ -4,23 +4,27 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: no | ## Possibly hidden family -**rougail.family** -`basic` *`hidden`* -**Hidden**: if condition is yes +| Informations | +|:------------| +| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | ### subfamily -**rougail.family.subfamily** -`basic` + +| Informations | +|:------------| +| **rougail.family.subfamily**
`basic` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh index 620146925..606b1c9bd 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,30 +25,23 @@ Possibly hidden family - rougail.family -  basic   hidden  - Hidden: if condition is yes - subfamily - rougail.family.subfamily -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc index 7b89ac474..07aac7a84 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc +++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md index c9176d48f..50a0b2de9 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -12,16 +12,12 @@
Possibly hidden family >>> [!note] Informations -**rougail.family**
`standard` *`hidden`* - -**Hidden**: when the variable "[`The variable use has condition`](#rougail.condition)" has the value "true" +
**rougail.family**
`standard` *`hidden`*
**Hidden**: when the variable "[`The variable use has condition`](#rougail.condition)" has the value "true" >>>
A subfamily >>> [!note] Informations -**rougail.family.subfamily**
`standard` - - +
**rougail.family.subfamily**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.html b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.html index ce14975d0..f7dfa8011 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.html +++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md index f084e8201..533a3ee40 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md @@ -4,23 +4,27 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: true | ## Possibly hidden family -**rougail.family** -`standard` *`hidden`* -**Hidden**: when the variable "rougail.condition" has the value "true" +| Informations | +|:------------| +| **rougail.family**
`standard` *`hidden`*
**Hidden**: when the variable "rougail.condition" has the value "true" | ### A subfamily -**rougail.family.subfamily** -`standard` + +| Informations | +|:------------| +| **rougail.family.subfamily**
`standard` | | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh index 32fab0df6..1d8bcf53f 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,30 +25,23 @@ Possibly hidden family - rougail.family -  standard   hidden  - Hidden: when the variable "rougail.condition" has the value "true" - A subfamily - rougail.family.subfamily -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.adoc b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.adoc index e8f418071..eaa027cff 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.adoc +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md index 3621f9294..fc8e60f47 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -13,9 +13,7 @@
A family >>> [!note] Informations -**rougail.family**
`standard` *`hidden`* - -**Hidden**: if condition1 is false +
**rougail.family**
`standard` *`hidden`*
**Hidden**: if condition1 is false >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.html b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.html index a7d3c7a91..54355dce0 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.html +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md index 08153a2f5..fc06db7d9 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition1**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first conditional variable.
**Default**: false | @@ -11,11 +13,11 @@ ## A family -**rougail.family** -`standard` *`hidden`* -**Hidden**: if condition1 is false +| Informations | +|:------------| +| **rougail.family**
`standard` *`hidden`*
**Hidden**: if condition1 is false | | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh index a10df3124..117f02c4a 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -26,17 +28,13 @@ A family - rougail.family -  standard   hidden  - Hidden: if condition1 is false - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.adoc b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.adoc index 0df3c90fb..0dda65f3a 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.adoc +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md index 638e82e9b..9034c9581 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -12,16 +12,12 @@
Possibly hidden family >>> [!note] Informations -**rougail.family**
`basic` *`hidden`* - -**Hidden**: if condition is yes +
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes >>>
A subfamily >>> [!note] Informations -**rougail.family.sub_family**
`basic` - - +
**rougail.family.sub_family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.html b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.html index 45a5294b6..d1202583a 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.html +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md index f9c2a6142..d704992c6 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md @@ -4,23 +4,27 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: no | ## Possibly hidden family -**rougail.family** -`basic` *`hidden`* -**Hidden**: if condition is yes +| Informations | +|:------------| +| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | ### A subfamily -**rougail.family.sub_family** -`basic` + +| Informations | +|:------------| +| **rougail.family.sub_family**
`basic` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh index 34d2da6c3..cdd445244 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,30 +25,23 @@ Possibly hidden family - rougail.family -  basic   hidden  - Hidden: if condition is yes - A subfamily - rougail.family.sub_family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.adoc b/tests/results/test_namespace/24_0family_mandatory_condition.adoc index d94288338..70bc4ef11 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.adoc +++ b/tests/results/test_namespace/24_0family_mandatory_condition.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md index fd54ce6c7..26e21fe4c 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.html b/tests/results/test_namespace/24_0family_mandatory_condition.html index f64717dff..f62722869 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.html +++ b/tests/results/test_namespace/24_0family_mandatory_condition.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.md b/tests/results/test_namespace/24_0family_mandatory_condition.md index 4c180884f..9af1bfaef 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                     | Description                                                                                                  | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no | diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.sh b/tests/results/test_namespace/24_0family_mandatory_condition.sh index 51e7284f0..eff89f09b 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace/24_0family_mandatory_condition.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc b/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc index 81e0bc599..9d83f3e46 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md index c0efb3937..28f8566d4 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.html b/tests/results/test_namespace/24_0family_mandatory_condition_variable.html index 726b5ba7f..8da8d9ce6 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.html +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace/24_0family_mandatory_condition_variable.md index faf8cef38..4e89b9dc9 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                     | Description                                                                                                  | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true | diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh index 8cc12ee25..25f870e82 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/24_7validators_variable_optional.adoc b/tests/results/test_namespace/24_7validators_variable_optional.adoc index 76ed967de..7459797e0 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.adoc +++ b/tests/results/test_namespace/24_7validators_variable_optional.adoc @@ -4,6 +4,8 @@ `basic` + + === A family diff --git a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md index b0b8c6e58..cc6fed901 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md +++ b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A family >>> [!note] Informations -**rougail.general**
`basic` - - +
**rougail.general**
`basic` >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_7validators_variable_optional.html b/tests/results/test_namespace/24_7validators_variable_optional.html index ae6594022..511476ae7 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.html +++ b/tests/results/test_namespace/24_7validators_variable_optional.html @@ -4,6 +4,8 @@ basic + +

A family

rougail.general diff --git a/tests/results/test_namespace/24_7validators_variable_optional.md b/tests/results/test_namespace/24_7validators_variable_optional.md index 848c2a2c9..2d16d067a 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.md +++ b/tests/results/test_namespace/24_7validators_variable_optional.md @@ -4,11 +4,15 @@ `basic` + + ## A family -**rougail.general** -`basic` + +| Informations | +|:------------| +| **rougail.general**
`basic` | | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_7validators_variable_optional.sh b/tests/results/test_namespace/24_7validators_variable_optional.sh index 2febebdd9..e332b5ddd 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace/24_7validators_variable_optional.sh @@ -14,17 +14,16 @@ - A family + A family + rougail.general -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership.adoc b/tests/results/test_namespace/40_0leadership.adoc index 988c36fbd..a14618c7d 100644 --- a/tests/results/test_namespace/40_0leadership.adoc +++ b/tests/results/test_namespace/40_0leadership.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership.gitlab.md b/tests/results/test_namespace/40_0leadership.gitlab.md index e3d9fbec3..e8a0665e8 100644 --- a/tests/results/test_namespace/40_0leadership.gitlab.md +++ b/tests/results/test_namespace/40_0leadership.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test_namespace/40_0leadership.html b/tests/results/test_namespace/40_0leadership.html index 5ca6404ad..fb0cae0bd 100644 --- a/tests/results/test_namespace/40_0leadership.html +++ b/tests/results/test_namespace/40_0leadership.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
Variable Description
diff --git a/tests/results/test_namespace/40_0leadership.md b/tests/results/test_namespace/40_0leadership.md index d6309cdbc..c8bf82d31 100644 --- a/tests/results/test_namespace/40_0leadership.md +++ b/tests/results/test_namespace/40_0leadership.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership.sh b/tests/results/test_namespace/40_0leadership.sh index fb88f303c..45982c081 100644 --- a/tests/results/test_namespace/40_0leadership.sh +++ b/tests/results/test_namespace/40_0leadership.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership_diff_name.adoc b/tests/results/test_namespace/40_0leadership_diff_name.adoc index c1f0e8756..522dbc706 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.adoc +++ b/tests/results/test_namespace/40_0leadership_diff_name.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md index 49da69f5b..f25883a46 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership**
`basic` - - +
**rougail.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| diff --git a/tests/results/test_namespace/40_0leadership_diff_name.html b/tests/results/test_namespace/40_0leadership_diff_name.html index 0de57a980..bcdc684a4 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.html +++ b/tests/results/test_namespace/40_0leadership_diff_name.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/40_0leadership_diff_name.md b/tests/results/test_namespace/40_0leadership_diff_name.md index 404c10b8b..358051811 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.md +++ b/tests/results/test_namespace/40_0leadership_diff_name.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership** -`basic` +| Informations | +|:------------| +| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_diff_name.sh b/tests/results/test_namespace/40_0leadership_diff_name.sh index b6d5cdba0..c06dda837 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.sh +++ b/tests/results/test_namespace/40_0leadership_diff_name.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.adoc b/tests/results/test_namespace/40_0leadership_follower_default_calculation.adoc index 4d037a62e..2453773af 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.adoc +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md index 9704bd3c1..4691176b7 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.html b/tests/results/test_namespace/40_0leadership_follower_default_calculation.html index 0d853c8c5..15e838612 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.html +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.md b/tests/results/test_namespace/40_0leadership_follower_default_calculation.md index 2f457f101..03a64c03d 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh index 81305971e..ce78b1801 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.adoc b/tests/results/test_namespace/40_0leadership_follower_default_submulti.adoc index 47d0481df..0d5528451 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.adoc +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md index b4b9eb0d9..112343744 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.html b/tests/results/test_namespace/40_0leadership_follower_default_submulti.html index d6c5a4ac6..b442aa1b2 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.html +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti.md index d62984680..346b24451 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh index 794b0e29d..7348197e8 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.adoc b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.adoc index 2ad364a43..9297a008d 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.adoc +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md index 4660be3e8..c55e2daa4 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.html b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.html index 9f5df07f4..3f5505a47 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.html +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md index 8f993cf40..693a4d79a 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh index 1c564846d..acbdf5a97 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.adoc b/tests/results/test_namespace/40_0leadership_follower_default_value.adoc index 18e6cc1d7..49784d79c 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.adoc +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md index 6e5cff7bf..1a414bfd4 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.html b/tests/results/test_namespace/40_0leadership_follower_default_value.html index 052f868c7..20aaf107c 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.html +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.md b/tests/results/test_namespace/40_0leadership_follower_default_value.md index 2733ddb22..1401fa2c4 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.sh b/tests/results/test_namespace/40_0leadership_follower_default_value.sh index f16ab2017..5e134cf13 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.sh +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.adoc b/tests/results/test_namespace/40_0leadership_leader_follower.adoc index db640fc17..43b916d4b 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.adoc +++ b/tests/results/test_namespace/40_0leadership_leader_follower.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md index d526f0fdb..f14e243b5 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership**
`standard` - - +
**rougail.leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.html b/tests/results/test_namespace/40_0leadership_leader_follower.html index 67e83bc52..3f120baae 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.html +++ b/tests/results/test_namespace/40_0leadership_leader_follower.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leadership +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.md b/tests/results/test_namespace/40_0leadership_leader_follower.md index eaf042bdd..0565eb6bd 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.md +++ b/tests/results/test_namespace/40_0leadership_leader_follower.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership** -`standard` +| Informations | +|:------------| +| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.sh b/tests/results/test_namespace/40_0leadership_leader_follower.sh index 4d86d73c8..6e170089f 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.sh +++ b/tests/results/test_namespace/40_0leadership_leader_follower.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.adoc b/tests/results/test_namespace/40_0leadership_leader_not_multi.adoc index bcaf44607..225652a12 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.adoc +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.adoc @@ -4,6 +4,8 @@ `basic` + + === general @@ -31,11 +33,11 @@ No change. + ==== Leader -This family contains lists of variable blocks - **rougail.general1.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md index 4fc5dcc55..91673dc4c 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
general >>> [!note] Informations -**rougail.general**
`standard` - - +
**rougail.general**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -21,18 +19,12 @@
general1 >>> [!note] Informations -**rougail.general1**
`basic` - - +
**rougail.general1**
`basic` >>>
Leader -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.general1.leader**
`basic` - - +
**rougail.general1.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.html b/tests/results/test_namespace/40_0leadership_leader_not_multi.html index aa6866356..e6cf369f2 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.html +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.html @@ -4,6 +4,8 @@ basic + +

general

rougail.general @@ -27,10 +29,10 @@

Leader

-This family contains lists of variable blocks - rougail.general1.leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.md b/tests/results/test_namespace/40_0leadership_leader_not_multi.md index 033ab79b0..2965980f5 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.md +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.md @@ -4,11 +4,15 @@ `basic` + + ## general -**rougail.general** -`standard` + +| Informations | +|:------------| +| **rougail.general**
`standard` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -16,17 +20,19 @@ ## general1 -**rougail.general1** -`basic` + +| Informations | +|:------------| +| **rougail.general1**
`basic` | ### Leader -This family contains lists of variable blocks -**rougail.general1.leader** -`basic` +| Informations | +|:------------| +| **rougail.general1.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace/40_0leadership_leader_not_multi.sh index 0b5b54e24..c8ff14c65 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.sh +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.sh @@ -14,17 +14,16 @@ - general + general + rougail.general -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -37,30 +36,23 @@ general1 - rougail.general1 -  basic  - Leader -This family contains lists of variable blocks - - - rougail.general1.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_0leadership_reduce.adoc b/tests/results/test_namespace/40_0leadership_reduce.adoc index 00a489c3e..5f1244d2f 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.adoc +++ b/tests/results/test_namespace/40_0leadership_reduce.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md index e01ba711d..2c8fbf994 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership**
`basic` - - +
**rougail.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_reduce.html b/tests/results/test_namespace/40_0leadership_reduce.html index f6edf67ab..b3338c233 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.html +++ b/tests/results/test_namespace/40_0leadership_reduce.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/40_0leadership_reduce.md b/tests/results/test_namespace/40_0leadership_reduce.md index 00d884c59..d6faff2d9 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.md +++ b/tests/results/test_namespace/40_0leadership_reduce.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership** -`basic` +| Informations | +|:------------| +| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_reduce.sh b/tests/results/test_namespace/40_0leadership_reduce.sh index b15e9bc2a..a0591ea77 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.sh +++ b/tests/results/test_namespace/40_0leadership_reduce.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_1leadership_append_follower.adoc b/tests/results/test_namespace/40_1leadership_append_follower.adoc index 0ac554efe..73a2438ca 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.adoc +++ b/tests/results/test_namespace/40_1leadership_append_follower.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md index ee72e91f5..5335ce621 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md +++ b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------| diff --git a/tests/results/test_namespace/40_1leadership_append_follower.html b/tests/results/test_namespace/40_1leadership_append_follower.html index 54f04ca39..2ca86e59c 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.html +++ b/tests/results/test_namespace/40_1leadership_append_follower.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/40_1leadership_append_follower.md b/tests/results/test_namespace/40_1leadership_append_follower.md index ca53230d5..fe57bd160 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.md +++ b/tests/results/test_namespace/40_1leadership_append_follower.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_1leadership_append_follower.sh b/tests/results/test_namespace/40_1leadership_append_follower.sh index 5960c064f..75b076e6d 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.sh +++ b/tests/results/test_namespace/40_1leadership_append_follower.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.adoc b/tests/results/test_namespace/40_2leadership_calculation_index.adoc index 01eccd725..fe31f4b00 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.adoc +++ b/tests/results/test_namespace/40_2leadership_calculation_index.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md index f5acdf73b..13751f913 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.html b/tests/results/test_namespace/40_2leadership_calculation_index.html index 41af61378..8da4ba6e1 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.html +++ b/tests/results/test_namespace/40_2leadership_calculation_index.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.md b/tests/results/test_namespace/40_2leadership_calculation_index.md index 868511ae0..7d09bfa4e 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.sh b/tests/results/test_namespace/40_2leadership_calculation_index.sh index 200fdc2cc..16eb024bd 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.sh +++ b/tests/results/test_namespace/40_2leadership_calculation_index.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.adoc b/tests/results/test_namespace/40_2leadership_calculation_index_2.adoc index 01eccd725..fe31f4b00 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.adoc +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md index f5acdf73b..13751f913 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.html b/tests/results/test_namespace/40_2leadership_calculation_index_2.html index 41af61378..8da4ba6e1 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.html +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.md b/tests/results/test_namespace/40_2leadership_calculation_index_2.md index 868511ae0..7d09bfa4e 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace/40_2leadership_calculation_index_2.sh index 200fdc2cc..16eb024bd 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.sh +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.adoc b/tests/results/test_namespace/40_2leadership_calculation_param_index.adoc index 02c38db9e..59e6ab698 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.adoc +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.adoc @@ -4,13 +4,15 @@ `standard` -=== Leadership -This family contains lists of variable blocks + +=== Leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md index 8bd7ed1ab..7ad978e37 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
Leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.html b/tests/results/test_namespace/40_2leadership_calculation_param_index.html index b4d02e0a5..3b8a85681 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.html +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.html @@ -4,12 +4,14 @@ standard + +

Leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.md b/tests/results/test_namespace/40_2leadership_calculation_param_index.md index 855107cac..b4922b6e1 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.md +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.md @@ -4,13 +4,15 @@ `standard` + + ## Leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace/40_2leadership_calculation_param_index.sh index 812df5cbb..25ace2905 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.sh +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.sh @@ -14,20 +14,18 @@ + + Leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.adoc b/tests/results/test_namespace/40_2leadership_leader_calculation.adoc index f7540ee12..b29ea1bf6 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.adoc +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md index b6f88458e..197f92206 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.html b/tests/results/test_namespace/40_2leadership_leader_calculation.html index 418c31710..1eefeab7a 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.html +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.md b/tests/results/test_namespace/40_2leadership_leader_calculation.md index b6cc343d8..d33d018d3 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.md +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.sh b/tests/results/test_namespace/40_2leadership_leader_calculation.sh index ad79ca4c1..6c4f74d63 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.adoc b/tests/results/test_namespace/40_6leadership_follower_multi.adoc index 5645628c5..fb7e68d8f 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.adoc +++ b/tests/results/test_namespace/40_6leadership_follower_multi.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md index 04a20d343..0f8b9274c 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership**
`basic` - - +
**rougail.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.html b/tests/results/test_namespace/40_6leadership_follower_multi.html index 636b11891..6cabc73d0 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.html +++ b/tests/results/test_namespace/40_6leadership_follower_multi.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.md b/tests/results/test_namespace/40_6leadership_follower_multi.md index c344a1291..856146ac7 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership** -`basic` +| Informations | +|:------------| +| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.sh b/tests/results/test_namespace/40_6leadership_follower_multi.sh index 20d246602..3ddd32f37 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.sh +++ b/tests/results/test_namespace/40_6leadership_follower_multi.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.adoc b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.adoc index 48b918b3f..4c3571c88 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.adoc +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md index b67546abd..c0a22ed0f 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership**
`basic` - - +
**rougail.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.html b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.html index ef03adc29..7259580e6 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.html +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leadership +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md index 70a930856..33ed61996 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership** -`basic` +| Informations | +|:------------| +| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh index 4794b3173..a1d669106 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_8calculation_boolean.adoc b/tests/results/test_namespace/40_8calculation_boolean.adoc index 1c984933a..1054d65fa 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.adoc +++ b/tests/results/test_namespace/40_8calculation_boolean.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md index 078e166ea..af92567f6 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/40_8calculation_boolean.html b/tests/results/test_namespace/40_8calculation_boolean.html index b91797bd3..d008eb8c6 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.html +++ b/tests/results/test_namespace/40_8calculation_boolean.html @@ -4,6 +4,8 @@ standard + +
diff --git a/tests/results/test_namespace/40_8calculation_boolean.md b/tests/results/test_namespace/40_8calculation_boolean.md index cbb2e2866..2b9234a74 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.md +++ b/tests/results/test_namespace/40_8calculation_boolean.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.bool**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A boolean variable.
**Default**: false | diff --git a/tests/results/test_namespace/40_8calculation_boolean.sh b/tests/results/test_namespace/40_8calculation_boolean.sh index e4d4540d2..03851c09e 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.sh +++ b/tests/results/test_namespace/40_8calculation_boolean.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.adoc b/tests/results/test_namespace/40_8calculation_boolean_return_none.adoc index f8199b379..c324b766e 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.adoc +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md index 361b032c8..35ecf0690 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.html b/tests/results/test_namespace/40_8calculation_boolean_return_none.html index 0230f15ae..930ef5c51 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.html +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.md b/tests/results/test_namespace/40_8calculation_boolean_return_none.md index 908bed842..68af81ba5 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.md +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: yes | diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace/40_8calculation_boolean_return_none.sh index a966792e8..f6db0d92e 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_8calculation_integer.adoc b/tests/results/test_namespace/40_8calculation_integer.adoc index b0b269802..f1e92e445 100644 --- a/tests/results/test_namespace/40_8calculation_integer.adoc +++ b/tests/results/test_namespace/40_8calculation_integer.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/40_8calculation_integer.gitlab.md b/tests/results/test_namespace/40_8calculation_integer.gitlab.md index 9897105ac..f7ad102a2 100644 --- a/tests/results/test_namespace/40_8calculation_integer.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_integer.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/40_8calculation_integer.html b/tests/results/test_namespace/40_8calculation_integer.html index f6168bbbc..ee43511a9 100644 --- a/tests/results/test_namespace/40_8calculation_integer.html +++ b/tests/results/test_namespace/40_8calculation_integer.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_integer.md b/tests/results/test_namespace/40_8calculation_integer.md index fb7240c35..f20dcc99c 100644 --- a/tests/results/test_namespace/40_8calculation_integer.md +++ b/tests/results/test_namespace/40_8calculation_integer.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.bool**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A boolean variable.
**Default**: false | diff --git a/tests/results/test_namespace/40_8calculation_integer.sh b/tests/results/test_namespace/40_8calculation_integer.sh index eb8b8f9ef..b0303e2b6 100644 --- a/tests/results/test_namespace/40_8calculation_integer.sh +++ b/tests/results/test_namespace/40_8calculation_integer.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.adoc b/tests/results/test_namespace/40_8calculation_multi_variable.adoc index c9485c1b3..4e0b15059 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.adoc +++ b/tests/results/test_namespace/40_8calculation_multi_variable.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md index 6870d67dc..7e30ba3f4 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.html b/tests/results/test_namespace/40_8calculation_multi_variable.html index 9bc798be4..bac0c5d2d 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.html +++ b/tests/results/test_namespace/40_8calculation_multi_variable.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.md b/tests/results/test_namespace/40_8calculation_multi_variable.md index bba2b33bd..eede7633d 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.
**Default**:
- the value of the variable "rougail.var2"
- the value of the variable "rougail.var3" | diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.sh b/tests/results/test_namespace/40_8calculation_multi_variable.sh index 508ef5516..708bb0c0e 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.sh +++ b/tests/results/test_namespace/40_8calculation_multi_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc b/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc index 51c79b880..f45328b71 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md index 1da825db9..45dc4a70f 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -12,9 +12,7 @@
A family >>> [!note] Informations -**rougail.fam1**
`standard` - - +
**rougail.fam1**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.html b/tests/results/test_namespace/40_8calculation_multi_variable_parent.html index 3ac269ecb..892135758 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.html +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent.md index 254f611c2..988418b73 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.md @@ -4,15 +4,19 @@ `standard` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no | ## A family -**rougail.fam1** -`standard` + +| Informations | +|:------------| +| **rougail.fam1**
`standard` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh index adf3c1fc4..acd6df449 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,14 +25,11 @@ A family - rougail.fam1 -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc index 517821b7e..a5163d250 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc @@ -4,6 +4,8 @@ `standard` + + === First family diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md index 30ba8bbaa..3774e9ebf 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
First family >>> [!note] Informations -**rougail.fam1**
`standard` - - +
**rougail.fam1**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| @@ -21,9 +19,7 @@
Second family >>> [!note] Informations -**rougail.fam2**
`standard` - - +
**rougail.fam2**
`standard` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html index 549a2c394..e895766fa 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html @@ -4,6 +4,8 @@ standard + +

First family

rougail.fam1 diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md index b51ec8fd0..6ef5abe09 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md @@ -4,11 +4,15 @@ `standard` + + ## First family -**rougail.fam1** -`standard` + +| Informations | +|:------------| +| **rougail.fam1**
`standard` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -16,9 +20,11 @@ ## Second family -**rougail.fam2** -`standard` + +| Informations | +|:------------| +| **rougail.fam2**
`standard` | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh index b3e652cb8..c0300b08a 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh @@ -14,17 +14,16 @@ - First family + First family + rougail.fam1 -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -37,14 +36,11 @@ Second family - rougail.fam2 -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.adoc index e95469280..a05d17e2b 100644 --- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.adoc +++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md index c84de058b..5eff4c5b2 100644 --- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership**
`standard` - - +
**rougail.leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.html b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.html index 17a117578..839a89da3 100644 --- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.html +++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leadership +This family contains lists of variable blocks. + standard
Variable Description
diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md index 520ed5b17..49cc781d5 100644 --- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md +++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership** -`standard` +| Informations | +|:------------| +| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh index 8bafd12e1..2bc75db79 100644 --- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.adoc index 3ef8322b1..8a2d3f491 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md index 3b48da44b..8a65833b6 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.html b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.html index 1235b8efc..399efe9fa 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md index 9dcd945bd..588c64207 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh index bd7475f24..e125cf9c5 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.adoc index 3ef8322b1..8a2d3f491 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md index 3b48da44b..8a65833b6 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.html b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.html index 1235b8efc..399efe9fa 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md index 9dcd945bd..588c64207 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh index bd7475f24..e125cf9c5 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.adoc index feda14169..0dfd6b582 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.adoc @@ -4,13 +4,15 @@ `standard` -=== leader -This family contains lists of variable blocks + +=== leader **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md index 944cfa5e8..11de2d560 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
leader -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.html b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.html index ce4efc283..296ea9a41 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.html @@ -4,12 +4,14 @@ standard + +

leader

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md index bc78bbe5d..a50f382cf 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md @@ -4,13 +4,15 @@ `standard` + + ## leader -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh index efb4dbc35..77fa66ef8 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -14,20 +14,18 @@ + + leader -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc index 354335a3b..d58d4e3c9 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md index 96f1dd8af..f6b4621a7 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html index 586bdc72c..86a55b53a 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md index 8e2c6d4cb..44b92abe8 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh index 9185d691e..aaebcd1b8 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.adoc index 67ac52e59..57da7863c 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md index 4629416c8..b5e782f02 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.html b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.html index a1b41d0e3..e480038ff 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md index 64cb9a7c8..62bd8fad0 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh index ddee26017..6ca2c7b8c 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.adoc index 67ac52e59..57da7863c 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md index 4629416c8..b5e782f02 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.html b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.html index a1b41d0e3..e480038ff 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md index 64cb9a7c8..62bd8fad0 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh index ddee26017..6ca2c7b8c 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc index 796d8dc3c..8b5d3971b 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md index 3f5b41cb1..079d3c2e8 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html index d0cae3548..0bcd0e156 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md index b9a887e58..8fbe60852 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh index eb5f2b2b9..17df3858a 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable.adoc index 5913fc346..eae3091b6 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,11 +22,11 @@ A calculated variable. + === A leadership -This family contains lists of variable blocks - **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md index 010f529b8..9f80d505b 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.html b/tests/results/test_namespace/40_9leadership-calculation-variable.html index c752473b3..52d7ba33f 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.html +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.html @@ -4,6 +4,8 @@ standard + +
@@ -16,10 +18,10 @@

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
Variable Description
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.md b/tests/results/test_namespace/40_9leadership-calculation-variable.md index fcf14e469..da8ac5633 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.md @@ -4,17 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A calculated variable.
**Default**:
- value1
- value2 | ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.sh b/tests/results/test_namespace/40_9leadership-calculation-variable.sh index 4501af27d..5f4b19245 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,17 +27,13 @@ A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc index 79031817e..5a8886459 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership_1** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] @@ -34,11 +36,11 @@ A follower. === A second leadership -This family contains lists of variable blocks - **rougail.leadership_2** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md index 951bd3f60..bbe31e6cc 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership_1**
`basic` - - +
**rougail.leadership_1**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -23,12 +19,8 @@ This family contains lists of variable blocks
A second leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership_2**
`standard` - - +
**rougail.leadership_2**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.html b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.html index 42aead3b3..5e8663f68 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.html +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leadership_1 +This family contains lists of variable blocks. + basic
@@ -25,10 +27,10 @@ This family contains lists of variable blocks

A second leadership

-This family contains lists of variable blocks - rougail.leadership_2 +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md index b32d6fa6e..81e5810c4 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership_1** -`basic` +| Informations | +|:------------| +| **rougail.leadership_1**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -19,11 +21,11 @@ This family contains lists of variable blocks ## A second leadership -This family contains lists of variable blocks -**rougail.leadership_2** -`standard` +| Informations | +|:------------| +| **rougail.leadership_2**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh index 24d3deccc..48092b14f 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership_1 +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -45,17 +43,13 @@ This family contains lists of variable blocks A second leadership -This family contains lists of variable blocks - - - rougail.leadership_2 +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc index 6001daf07..fb5061d21 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership_1** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] @@ -34,11 +36,11 @@ A follower. === A second leadership -This family contains lists of variable blocks - **rougail.leadership_2** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md index ca9644928..d77415523 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership_1**
`basic` - - +
**rougail.leadership_1**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| @@ -23,12 +19,8 @@ This family contains lists of variable blocks
A second leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership_2**
`standard` - - +
**rougail.leadership_2**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.html b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.html index fb312b046..e1f32cae7 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.html +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leadership_1 +This family contains lists of variable blocks. + basic
@@ -25,10 +27,10 @@ This family contains lists of variable blocks

A second leadership

-This family contains lists of variable blocks - rougail.leadership_2 +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md index 764750d9c..21cfc1801 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership_1** -`basic` +| Informations | +|:------------| +| **rougail.leadership_1**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -19,11 +21,11 @@ This family contains lists of variable blocks ## A second leadership -This family contains lists of variable blocks -**rougail.leadership_2** -`standard` +| Informations | +|:------------| +| **rougail.leadership_2**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh index 11b8b0f6c..75202dcf4 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership_1 +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -45,17 +43,13 @@ This family contains lists of variable blocks A second leadership -This family contains lists of variable blocks - - - rougail.leadership_2 +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/41_0choice_leader.adoc b/tests/results/test_namespace/41_0choice_leader.adoc index 9a1d99b80..b120a635a 100644 --- a/tests/results/test_namespace/41_0choice_leader.adoc +++ b/tests/results/test_namespace/41_0choice_leader.adoc @@ -4,13 +4,15 @@ `basic` -=== The leadership -This family contains lists of variable blocks + +=== The leadership **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/41_0choice_leader.gitlab.md b/tests/results/test_namespace/41_0choice_leader.gitlab.md index d88edb948..b7384faf7 100644 --- a/tests/results/test_namespace/41_0choice_leader.gitlab.md +++ b/tests/results/test_namespace/41_0choice_leader.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
The leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| diff --git a/tests/results/test_namespace/41_0choice_leader.html b/tests/results/test_namespace/41_0choice_leader.html index 90b568b17..f71ce88b1 100644 --- a/tests/results/test_namespace/41_0choice_leader.html +++ b/tests/results/test_namespace/41_0choice_leader.html @@ -4,12 +4,14 @@ basic + +

The leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/41_0choice_leader.md b/tests/results/test_namespace/41_0choice_leader.md index 47696b1fd..6ce8f7de1 100644 --- a/tests/results/test_namespace/41_0choice_leader.md +++ b/tests/results/test_namespace/41_0choice_leader.md @@ -4,13 +4,15 @@ `basic` + + ## The leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/41_0choice_leader.sh b/tests/results/test_namespace/41_0choice_leader.sh index 56b566634..b380ac2de 100644 --- a/tests/results/test_namespace/41_0choice_leader.sh +++ b/tests/results/test_namespace/41_0choice_leader.sh @@ -14,20 +14,18 @@ + + The leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.adoc b/tests/results/test_namespace/44_4disabled_calcultion_follower.adoc index f76c7eb1e..421f7558b 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.adoc +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -17,11 +19,11 @@ A condition. + === A leadership -This family contains lists of variable blocks - **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md index 711c79f62..3f728a7ff 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.html b/tests/results/test_namespace/44_4disabled_calcultion_follower.html index bd8fe7676..a7346ca58 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.html +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.html @@ -4,6 +4,8 @@ basic + +
@@ -15,10 +17,10 @@

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
Variable Description
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.md index ed6bfd573..b0d5f37f2 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.md @@ -4,17 +4,19 @@ `basic` + + | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true | ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace/44_4disabled_calcultion_follower.sh index 920159716..e86974a22 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,17 +25,13 @@ A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.adoc b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.adoc index 4339d93ea..8849b03b8 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.adoc +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.adoc @@ -4,13 +4,15 @@ `standard` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leadership** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md index 431286cce..90e0beca0 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leadership**
`standard` - - +
**rougail.leadership**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.html b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.html index 8ffa54c92..730e67f0a 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.html +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.html @@ -4,12 +4,14 @@ standard + +

A leadership

-This family contains lists of variable blocks - rougail.leadership +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md index 100c4a9fc..918cbf0c6 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md @@ -4,13 +4,15 @@ `standard` + + ## A leadership -This family contains lists of variable blocks -**rougail.leadership** -`standard` +| Informations | +|:------------| +| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh index eba9ce8a8..80e266f6b 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leadership +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/44_4leadership_mandatory.adoc b/tests/results/test_namespace/44_4leadership_mandatory.adoc index 926ac5549..6f91d385a 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.adoc +++ b/tests/results/test_namespace/44_4leadership_mandatory.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md index c7fedfaf2..47bd4e632 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md +++ b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory.html b/tests/results/test_namespace/44_4leadership_mandatory.html index 9496903e8..ecc728c61 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.html +++ b/tests/results/test_namespace/44_4leadership_mandatory.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/44_4leadership_mandatory.md b/tests/results/test_namespace/44_4leadership_mandatory.md index 20c8ea659..cb12a3283 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.md +++ b/tests/results/test_namespace/44_4leadership_mandatory.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory.sh b/tests/results/test_namespace/44_4leadership_mandatory.sh index 00be225e5..dd87cebb0 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.sh +++ b/tests/results/test_namespace/44_4leadership_mandatory.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.adoc b/tests/results/test_namespace/44_4leadership_mandatory_follower.adoc index cfbdef196..9892ccbad 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.adoc +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md index fa929a7ca..e92e146c3 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.html b/tests/results/test_namespace/44_4leadership_mandatory_follower.html index ca8b2ebff..6dc919eb5 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.html +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.html @@ -4,12 +4,14 @@ basic + +

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.md index d0e0bf494..11cd7949e 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.md +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace/44_4leadership_mandatory_follower.sh index 77ea3b571..eccf29f2d 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.sh +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.adoc b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.adoc index a9d5e51cc..8598dffbb 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.adoc +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -17,11 +19,11 @@ A condition. + === A leadership -This family contains lists of variable blocks - **rougail.leader** +This family contains lists of variable blocks. + `basic` `__hidden__` diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md index 7e09eddcf..a761bdfb9 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` *`hidden`* - -**Hidden**: if condition is no +
**rougail.leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.html b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.html index 5b4999878..f1e3ac219 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.html +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.html @@ -4,6 +4,8 @@ basic + +
@@ -15,10 +17,10 @@

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basichiddenHidden: if condition is no diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md index ea7e68618..b8323ee6f 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no | ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` *`hidden`* - -**Hidden**: if condition is no +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh index 492589acb..4cfe57846 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,20 +25,15 @@ A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic   hidden  - Hidden: if condition is no - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.adoc b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.adoc index 5730d25ce..5b86a9780 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.adoc +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -17,11 +19,11 @@ A condition. + === A leadership -This family contains lists of variable blocks - **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md index 4a6f53a60..7ff30fd0b 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`basic` - - +
**rougail.leader**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.html b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.html index d6f1d5644..45f7ef298 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.html +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -15,10 +17,10 @@

A leadership

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
Variable Description
diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md index db2e1d18d..17ac5815a 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md @@ -4,17 +4,19 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes | ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh index 29888b963..7f1818ccc 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,17 +25,13 @@ A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc b/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc index 1775d0b1f..c7f2cb14b 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc @@ -4,13 +4,15 @@ `standard` -=== Leader -This family contains lists of variable blocks + +=== Leader **rougail.leader** +This family contains lists of variable blocks. + `standard` [cols="1a,1a"] diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md index d31f16085..f1459a77f 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
Leader -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
`standard` - - +
**rougail.leader**
This family contains lists of variable blocks.
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.html b/tests/results/test_namespace/44_9calculated_default_leadership_leader.html index 0fcd5c210..35ef32822 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.html +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.html @@ -4,12 +4,14 @@ standard + +

Leader

-This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + standard
diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md index 1730e1cf7..00bb5b040 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md @@ -4,13 +4,15 @@ `standard` + + ## Leader -This family contains lists of variable blocks -**rougail.leader** -`standard` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh index d284e682f..1e0fc3692 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh @@ -14,20 +14,18 @@ + + Leader -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic.adoc b/tests/results/test_namespace/60_0family_dynamic.adoc index ff5119846..714042158 100644 --- a/tests/results/test_namespace/60_0family_dynamic.adoc +++ b/tests/results/test_namespace/60_0family_dynamic.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic.gitlab.md b/tests/results/test_namespace/60_0family_dynamic.gitlab.md index 33f6ccf31..ff56456d3 100644 --- a/tests/results/test_namespace/60_0family_dynamic.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic.html b/tests/results/test_namespace/60_0family_dynamic.html index 145e05164..97de8ee2f 100644 --- a/tests/results/test_namespace/60_0family_dynamic.html +++ b/tests/results/test_namespace/60_0family_dynamic.html @@ -4,6 +4,8 @@ basic + +
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic.md b/tests/results/test_namespace/60_0family_dynamic.md index ffabe5b3e..253412f96 100644 --- a/tests/results/test_namespace/60_0family_dynamic.md +++ b/tests/results/test_namespace/60_0family_dynamic.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic.sh b/tests/results/test_namespace/60_0family_dynamic.sh index fcbf0aaab..f90aa480c 100644 --- a/tests/results/test_namespace/60_0family_dynamic.sh +++ b/tests/results/test_namespace/60_0family_dynamic.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.adoc b/tests/results/test_namespace/60_0family_dynamic_1_0.adoc index 3f8047bda..e5936df5f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md index d12febbfa..36289ebec 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.html b/tests/results/test_namespace/60_0family_dynamic_1_0.html index 3d5e89910..33493a2e0 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.html +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.md b/tests/results/test_namespace/60_0family_dynamic_1_0.md index 40093ff41..a5051d7b9 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.sh b/tests/results/test_namespace/60_0family_dynamic_1_0.sh index 7539f18b1..f27461474 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.adoc index 275c5cf5b..d1b2a86ad 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md index a3113a501..1189dd384 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.html b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.html index 5186a5789..99445ade2 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md index fc4c86e50..a974883db 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh index d79688d3b..98a3cfa04 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.adoc b/tests/results/test_namespace/60_0family_dynamic_1_0_type.adoc index cbceff7e9..c4aa9ab73 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md index dc8ade4a1..a4db5f9e7 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.html b/tests/results/test_namespace/60_0family_dynamic_1_0_type.html index 82a0f781b..0dad409a8 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.html +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type.md index 655c6529a..cfc82a87f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh index bece0dfea..8967f4261 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.adoc index 5248884ef..d11a9a24c 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md index 4b943a453..8d6fff206 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.html b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.html index 8fb35f84a..ce17cc567 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md index 2605f6a20..9a5bcea2b 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh index 163992421..e25805c3f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.adoc b/tests/results/test_namespace/60_0family_dynamic_1_1.adoc index 2d1cd13bc..6daf3c488 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md index a3a53ca2c..e15ddcaf4 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.html b/tests/results/test_namespace/60_0family_dynamic_1_1.html index d53bb373a..a53da55d9 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.html +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.md b/tests/results/test_namespace/60_0family_dynamic_1_1.md index cf1926af9..9c8dd1b0f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.sh b/tests/results/test_namespace/60_0family_dynamic_1_1.sh index b9468c091..172e1e99b 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.adoc index 0d23b8ed4..2867768ac 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md index bc1872a6f..1294b55f0 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.html b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.html index bf7150ba9..36e398696 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md index 52d092239..ea1b1607b 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh index ea7a7ac8e..11d600677 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_empty.adoc index 40b5daca8..7795a0de0 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -16,11 +18,11 @@ A suffix variable. === A dynamic family -This family builds families dynamically - **rougail.dyn__example__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md index 6844b2941..efb5d62e1 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*example***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.html b/tests/results/test_namespace/60_0family_dynamic_empty.html index 005fac52c..4e685e976 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -15,10 +17,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynexample +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.md b/tests/results/test_namespace/60_0family_dynamic_empty.md index 22d8226f5..1d4fdf31e 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_empty.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable. | ## A dynamic family -This family builds families dynamically -**rougail.dyn*example*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.sh b/tests/results/test_namespace/60_0family_dynamic_empty.sh index bfa3076b6..b7683d030 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -24,20 +26,15 @@ A dynamic family -This family builds families dynamically - - - rougail.dynexample +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc index 59adb3131..9bff57a9b 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val_1__** + **rougail.dyn__val_2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md index 4387beb81..79ab1c571 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val_1***
**rougail.dyn*val_2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val_1***
**rougail.dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html index ce696a8d2..0dabde5ec 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval_1
rougail.dynval_2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md index a112a2ad3..8cfa2606e 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val.1
- val.2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val_1***
**rougail.dyn*val_2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val_1***
**rougail.dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh index c16e4acb9..128d629aa 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval_1 rougail.dynval_2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.adoc index 0d09a9373..1dcac3dad 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__1__** + **rougail.dyn__2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md index 61acac2e9..6e79a7eb9 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*1***
**rougail.dyn*2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.html b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.html index be0760b54..9ea28c2d5 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dyn1
rougail.dyn2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md index 14414968d..dcec88173 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                            | Description                                                                                                         | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- 1
- 2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*1***
**rougail.dyn*2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                            | Description                                                                                                         | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh index 1600daeb2..0ac99a9a3 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dyn1 rougail.dyn2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc b/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc index cc0121bb2..1e4514838 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__1__** + **rougail.dyn__2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md index 9a5418a39..433c0d644 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*1***
**rougail.dyn*2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.html b/tests/results/test_namespace/60_0family_dynamic_jinja_number.html index 56da2114c..3dac5f9d3 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.html +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dyn1
rougail.dyn2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.md b/tests/results/test_namespace/60_0family_dynamic_jinja_number.md index 33ecf6ec7..9d00d95f0 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- 1
- 2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*1***
**rougail.dyn*2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh index 0141c672b..1b90ec0b1 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dyn1 rougail.dyn2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.adoc b/tests/results/test_namespace/60_0family_dynamic_no_description.adoc index aac9f33c1..b0ba54dae 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md index 55537c75c..8c0e87336 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.html b/tests/results/test_namespace/60_0family_dynamic_no_description.html index 891ef4716..c0f7b8cb6 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.html +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.md b/tests/results/test_namespace/60_0family_dynamic_no_description.md index c8048c196..0e9ec3d3b 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.sh b/tests/results/test_namespace/60_0family_dynamic_no_description.sh index 8173482fe..2584a5062 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.adoc index c6312b1a3..e1723bf88 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md index bdb55f7f4..c3e84d5f4 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.html b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.html index 689d724e0..24fae7c61 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md index 2c1d39719..132b63a58 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh index 7577da588..d01f0acdc 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.adoc b/tests/results/test_namespace/60_0family_dynamic_source_hidden.adoc index a9120025f..6d515cd0f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.adoc @@ -4,14 +4,16 @@ `basic` -=== A dynamic family -This family builds families dynamically + +=== A dynamic family **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: (from an undocumented variable) diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md index bc1a3a1a3..f71aee2df 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: (from an undocumented variable)
- val1
- val2 +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.html b/tests/results/test_namespace/60_0family_dynamic_source_hidden.html index 26ebd032e..fe6e59749 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.html +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.html @@ -4,12 +4,14 @@ basic + +

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basic Identifiers: (from an undocumented variable)
  • val1
  • diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.md b/tests/results/test_namespace/60_0family_dynamic_source_hidden.md index c68056f90..3513c609a 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.md +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.md @@ -4,15 +4,15 @@ `basic` + + ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
    **rougail.dyn*val2*** -`basic` - -**Identifiers**: (from an undocumented variable)
    - val1
    - val2 +| Informations | +|:------------| +| **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**: (from an undocumented variable)
    - val1
    - val2 | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh index c306ab733..b634e1c34 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh @@ -14,26 +14,23 @@ + + A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: (from an undocumented variable) - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_static.adoc b/tests/results/test_namespace/60_0family_dynamic_static.adoc index edbd4d42d..b86f17a93 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_static.adoc @@ -4,14 +4,16 @@ `basic` -=== A dynamic family -This family builds families dynamically + +=== A dynamic family **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: diff --git a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md index 2a8d7d293..417fbd5b8 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md @@ -1,18 +1,14 @@
    Rougail >>> [!note] Informations -**rougail**
    `basic` +**rougail**
    `basic` >>>
    A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
    **rougail.dyn*val2***
    `basic` - -**Identifiers**:
    - val1
    - val2 +
    **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**:
    - val1
    - val2 >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_static.html b/tests/results/test_namespace/60_0family_dynamic_static.html index ba1ced2a6..d7678dad4 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.html +++ b/tests/results/test_namespace/60_0family_dynamic_static.html @@ -4,12 +4,14 @@ basic + +

    A dynamic family

    -This family builds families dynamically - rougail.dynval1
    rougail.dynval2 +This family builds families dynamically. + basic Identifiers:
    • val1
    • diff --git a/tests/results/test_namespace/60_0family_dynamic_static.md b/tests/results/test_namespace/60_0family_dynamic_static.md index 7533d3029..c3731bcb9 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.md +++ b/tests/results/test_namespace/60_0family_dynamic_static.md @@ -4,15 +4,15 @@ `basic` + + ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
      **rougail.dyn*val2*** -`basic` - -**Identifiers**:
      - val1
      - val2 +| Informations | +|:------------| +| **rougail.dyn*val1***
      **rougail.dyn*val2***
      This family builds families dynamically.
      `basic`
      **Identifiers**:
      - val1
      - val2 | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_static.sh b/tests/results/test_namespace/60_0family_dynamic_static.sh index 234833287..245df8439 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace/60_0family_dynamic_static.sh @@ -14,26 +14,23 @@ + + A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_test.adoc b/tests/results/test_namespace/60_0family_dynamic_test.adoc index 64b5e6cc0..aa33aa847 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_test.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md index 323dd04b0..dae9b1325 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md @@ -1,7 +1,7 @@
      Rougail >>> [!note] Informations -**rougail**
      `basic` +**rougail**
      `basic` >>> @@ -11,12 +11,8 @@
      A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
      **rougail.dyn*val2***
      `basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
      **rougail.dyn*val1***
      **rougail.dyn*val2***
      This family builds families dynamically.
      `basic`
      **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_test.html b/tests/results/test_namespace/60_0family_dynamic_test.html index de504683a..10bb99ab4 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.html +++ b/tests/results/test_namespace/60_0family_dynamic_test.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_test.md b/tests/results/test_namespace/60_0family_dynamic_test.md index 5f95cb2bf..4a3b457f6 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.md +++ b/tests/results/test_namespace/60_0family_dynamic_test.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_test.sh b/tests/results/test_namespace/60_0family_dynamic_test.sh index 301d1b374..f168526fe 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.sh +++ b/tests/results/test_namespace/60_0family_dynamic_test.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc b/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc index 6393b624f..6c4de669e 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md index 8dc938ca0..1436da385 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.html b/tests/results/test_namespace/60_0family_dynamic_upper_char.html index 84b16efe7..e685334a8 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.html +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.md b/tests/results/test_namespace/60_0family_dynamic_upper_char.md index 71236fc3b..45c561e21 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.md +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- Val1
- VAL2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace/60_0family_dynamic_upper_char.sh index 09c916c51..93ccd7029 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc index dac4cd75c..721107a1c 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -16,11 +18,11 @@ A suffix variable. === A dynamic family -This family builds families dynamically - **rougail.dyn__example__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md index 297d7999a..d9878f4b3 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*example***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.html b/tests/results/test_namespace/60_0family_dynamic_variable_empty.html index 4bafc2837..ea3ae0a7f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -15,10 +17,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynexample +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.md b/tests/results/test_namespace/60_0family_dynamic_variable_empty.md index 186057c97..4ae187043 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable. | ## A dynamic family -This family builds families dynamically -**rougail.dyn*example*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh index b6979814c..fe5a34437 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -24,20 +26,15 @@ A dynamic family -This family builds families dynamically - - - rougail.dynexample +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.adoc b/tests/results/test_namespace/60_0family_dynamic_variable_optional.adoc index 325ab93cb..c63f4195d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.adoc @@ -4,14 +4,16 @@ `standard` -=== A dynamic family -This family builds families dynamically + +=== A dynamic family **rougail.dyn__a__** + **rougail.dyn__b__** +This family builds families dynamically. + `standard` **Identifiers**: diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md index 0878d8a9e..503307d0a 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*a***
**rougail.dyn*b***
`standard` - -**Identifiers**:
- a
- b +
**rougail.dyn*a***
**rougail.dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.html b/tests/results/test_namespace/60_0family_dynamic_variable_optional.html index 764305219..83fd6db87 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.html +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.html @@ -4,12 +4,14 @@ standard + +

A dynamic family

-This family builds families dynamically - rougail.dyna
rougail.dynb +This family builds families dynamically. + standard Identifiers:
  • a
  • diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.md b/tests/results/test_namespace/60_0family_dynamic_variable_optional.md index dbc866d27..b3bd13f68 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.md @@ -4,15 +4,15 @@ `standard` + + ## A dynamic family -This family builds families dynamically -**rougail.dyn*a***
    **rougail.dyn*b*** -`standard` - -**Identifiers**:
    - a
    - b +| Informations | +|:------------| +| **rougail.dyn*a***
    **rougail.dyn*b***
    This family builds families dynamically.
    `standard`
    **Identifiers**:
    - a
    - b | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh index 00046125f..ce53f03f2 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh @@ -14,26 +14,23 @@ + + A dynamic family -This family builds families dynamically - - - rougail.dyna rougail.dynb +This family builds families dynamically.  standard  - Identifiers: - a - b - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc index f5c4dc7ff..88901c984 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md index d66ccfbbb..665805ce3 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md @@ -1,7 +1,7 @@
    Rougail >>> [!note] Informations -**rougail**
    `standard` +**rougail**
    `standard` >>> @@ -11,12 +11,8 @@
    A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
    **rougail.dyn*val2***
    `standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
    **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `standard`
    **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html index a623c72b1..e634f2880 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md index 22253feb6..3adc762f4 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh index 66ad137df..4ca18012f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.adoc index 4219aeaeb..f788fe18c 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md index 5ec1b864e..765a7c0ee 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.html b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.html index 47dad9e2c..c47587772 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md index 84ce02974..60fb99e17 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh index 726b6fadc..06a19d215 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_0family_mode.adoc b/tests/results/test_namespace/60_0family_mode.adoc index ab5dfd543..bb7bb1b8a 100644 --- a/tests/results/test_namespace/60_0family_mode.adoc +++ b/tests/results/test_namespace/60_0family_mode.adoc @@ -4,6 +4,8 @@ `basic` + + === A family diff --git a/tests/results/test_namespace/60_0family_mode.gitlab.md b/tests/results/test_namespace/60_0family_mode.gitlab.md index 731786ded..109af0972 100644 --- a/tests/results/test_namespace/60_0family_mode.gitlab.md +++ b/tests/results/test_namespace/60_0family_mode.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A family >>> [!note] Informations -**rougail.family**
`basic` - - +
**rougail.family**
`basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| diff --git a/tests/results/test_namespace/60_0family_mode.html b/tests/results/test_namespace/60_0family_mode.html index 843d605ad..ee2552e32 100644 --- a/tests/results/test_namespace/60_0family_mode.html +++ b/tests/results/test_namespace/60_0family_mode.html @@ -4,6 +4,8 @@ basic + +

A family

rougail.family diff --git a/tests/results/test_namespace/60_0family_mode.md b/tests/results/test_namespace/60_0family_mode.md index 431feb191..35fad5f2b 100644 --- a/tests/results/test_namespace/60_0family_mode.md +++ b/tests/results/test_namespace/60_0family_mode.md @@ -4,11 +4,15 @@ `basic` + + ## A family -**rougail.family** -`basic` + +| Informations | +|:------------| +| **rougail.family**
`basic` | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_mode.sh b/tests/results/test_namespace/60_0family_mode.sh index adb41591f..6e208cab4 100644 --- a/tests/results/test_namespace/60_0family_mode.sh +++ b/tests/results/test_namespace/60_0family_mode.sh @@ -14,17 +14,16 @@ - A family + A family + rougail.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.adoc b/tests/results/test_namespace/60_1family_dynamic_jinja.adoc index 10b26080d..d895eb01b 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.adoc +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__1__** + **rougail.dyn__2__** +This family builds families dynamically. + `standard` **Identifiers**: index of suffix value diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md index 7863759ac..c91eaa6ae 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*1***
**rougail.dyn*2***
`standard` - -**Identifiers**: index of suffix value +
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.html b/tests/results/test_namespace/60_1family_dynamic_jinja.html index 2ba8689d8..650beae6f 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.html +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dyn1
rougail.dyn2 +This family builds families dynamically. + standardIdentifiers: index of suffix value diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.md b/tests/results/test_namespace/60_1family_dynamic_jinja.md index ecf09ccd4..0ac6406ff 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.md +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*1***
**rougail.dyn*2*** -`standard` - -**Identifiers**: index of suffix value +| Informations | +|:------------| +| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.sh b/tests/results/test_namespace/60_1family_dynamic_jinja.sh index 7fd34b857..5a805c3aa 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.sh +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dyn1 rougail.dyn2 +This family builds families dynamically.  standard  - Identifiers: index of suffix value - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.adoc index 2a498c9e0..9e055990c 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.adoc +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md index d0d3189ef..51b4444bb 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,19 +11,13 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>>
A family >>> [!note] Informations -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` - - +
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.html b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.html index d969d8a36..b1cdd304a 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.html +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md index 0cef25869..d9d1938dc 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md @@ -4,25 +4,27 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | ### A family -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** -`basic` + +| Informations | +|:------------| +| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh index 21194c8fa..25c1f5274 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,35 +27,27 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - A family - rougail.dynval1.family rougail.dynval2.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.adoc b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.adoc index 352e93c48..62cb0e27d 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.adoc +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md index 73e5e81dd..cfabacd58 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,19 +11,13 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>>
A family inside dynamic family >>> [!note] Informations -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` - - +
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.html b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.html index ba1b5c967..d7011a820 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.html +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md index eed8ed4ba..8534cd916 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md @@ -4,25 +4,27 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | ### A family inside dynamic family -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** -`standard` + +| Informations | +|:------------| +| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh index 647417686..1a1640792 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,35 +27,27 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - A family inside dynamic family - rougail.dynval1.family rougail.dynval2.family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc index ff1128be1..81b1c8586 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md index de60c1150..670dfd016 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,19 +11,13 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>>
A family inside dynamic family >>> [!note] Informations -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` - - +
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.html b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.html index 9cd8f873f..6ebb0affc 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.html +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md index ce61a9846..4d4265788 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md @@ -4,25 +4,27 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | ### A family inside dynamic family -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** -`standard` + +| Informations | +|:------------| +| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index aed69b239..ab796af10 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,35 +27,27 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - A family inside dynamic family - rougail.dynval1.family rougail.dynval2.family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.adoc b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.adoc index b3bc3d0d4..532b0b387 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.adoc +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md index bc8aa5d70..aedc87951 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,19 +11,13 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>>
A family >>> [!note] Informations -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` - - +
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.html b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.html index 1e7eb7f2e..3cf0414e2 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.html +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md index f11817b45..ab42aed54 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md @@ -4,25 +4,27 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | ### A family -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** -`basic` + +| Informations | +|:------------| +| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh index 9640e9730..7c22baded 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,35 +27,27 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - A family - rougail.dynval1.family rougail.dynval2.family -  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc b/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc index 31fb9ffa5..a411ca0ad 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffx variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md index 121b81af7..a9568222d 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.html b/tests/results/test_namespace/60_2family_dynamic_outside_calc.html index 059ede753..fa7305e04 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.html +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md index 147f14f4c..ab62ccc01 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffx variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh index 91014833a..a710f82ff 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.adoc b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.adoc index c05c554c3..dda50fad0 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.adoc +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffx variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md index e7598141c..5e4c238e3 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.html b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.html index c8a33ec80..3b38201bf 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.html +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md index 5c4a3b3fe..5f0e7d989 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffx variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh index 93e79227d..9d07f1f51 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.adoc b/tests/results/test_namespace/60_5family_dynamic_calc2.adoc index 88772e78c..17dfc9db6 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -25,12 +27,12 @@ A second variable. === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` `__hidden__` diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md index 3d1bbc1eb..6153a44d9 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -12,12 +12,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` *`hidden`* - -**Hidden**: if var2 is no**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.html b/tests/results/test_namespace/60_5family_dynamic_calc2.html index 201a2d8ed..5dfb47231 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -17,10 +19,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardhiddenHidden: if var2 is no diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.md b/tests/results/test_namespace/60_5family_dynamic_calc2.md index 25bba2e4f..4c27b950b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | @@ -11,15 +13,11 @@ ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` *`hidden`* - -**Hidden**: if var2 is no - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.sh b/tests/results/test_namespace/60_5family_dynamic_calc2.sh index 181ea8a12..8b717213b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -28,24 +30,18 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard   hidden  - Hidden: if var2 is no - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc index 9290a7691..6e08dc9e0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -25,12 +27,12 @@ A second variable. === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` `__hidden__` diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md index 370b74865..49cce46b9 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -12,12 +12,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` *`hidden`* - -**Hidden**: if var2 is no**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html index e54b07ab2..b9feaff40 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -17,10 +19,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardhiddenHidden: if var2 is no diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md index e84140742..955fba7a0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | @@ -11,15 +13,11 @@ ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` *`hidden`* - -**Hidden**: if var2 is no - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh index c582a99b0..a4f515f4d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -28,24 +30,18 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard   hidden  - Hidden: if var2 is no - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc index cf00404b0..22a207d36 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md index 511f643d6..efe48bb5f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html index 79e4cd68e..dce1d7527 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md index 837cfa616..76c0adf85 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh index bbd83e6ea..0be1c474c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc index 552372ca9..1fdbfa737 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md index 388831fca..473e8194a 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html index 3c1eea592..d38f2dec2 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md index 298e801c0..f30f7e210 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh index bea4c1c69..1ee0c572a 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.adoc index f7a3a8511..6920b2d11 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md index 90dbae2bb..5ced31679 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.html index 0239ac6a0..32f6ccc34 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md index 581b99ac6..bf9e50669 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh index 49685adae..de3b62492 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.adoc index 377c03182..3de16ac53 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.adoc @@ -4,14 +4,16 @@ `basic` -=== dyn__val1__ or dyn__val2__ -This family builds families dynamically + +=== dyn__val1__ or dyn__val2__ **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md index 5bdde0dfd..79531d658 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**:
- val1
- val2 +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.html index 4cb0faa96..490d25f50 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.html @@ -4,12 +4,14 @@ basic + +

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basic Identifiers:
  • val1
  • diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md index eae61c9b8..e4e0bb750 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md @@ -4,15 +4,15 @@ `basic` + + ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
    **rougail.dyn*val2*** -`basic` - -**Identifiers**:
    - val1
    - val2 +| Informations | +|:------------| +| **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**:
    - val1
    - val2 | | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh index 95118be64..6c6ef2588 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh @@ -14,26 +14,23 @@ + + dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.adoc index 90ecf2730..4694a9561 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md index e9d5676c7..c4771d1bf 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md @@ -1,7 +1,7 @@
    Rougail >>> [!note] Informations -**rougail**
    `basic` +**rougail**
    `basic` >>> diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.html index ddb7b3c14..40a0f2381 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.html @@ -4,6 +4,8 @@ basic + +
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md index d3f736335..284f224cd 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh index 8f0e64d4a..0e876e0ec 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.adoc index c231f4378..e8f6f91a0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md index c90f690a7..9d6ce64ba 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.html index 7b106c050..34e41b099 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md index 5db2f762b..f90f43ca3 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh index b20407076..aab272649 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.adoc index 0ef82cfbe..992263b84 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -17,11 +19,11 @@ A suffix variable. + === dyn__val1__ -This family builds families dynamically - **rougail.dyn__val1__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md index bb5059a4e..b713b6f12 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
dyn*val1* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.html index 03782e017..ad2e86976 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -15,10 +17,10 @@

dyn<i>val1</i>

-This family builds families dynamically - rougail.dynval1 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md index 87dff7bcf..5891b4adc 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Example**: val1 | ## dyn*val1* -This family builds families dynamically -**rougail.dyn*val1*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh index 890c6fcc4..e34d0a786 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -24,20 +26,15 @@ dynval1 -This family builds families dynamically - - - rougail.dynval1 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc index b1c20a073..6cab7fb9c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -26,12 +28,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md index 812f92aff..006d3d821 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -12,12 +12,8 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.html index 40ccd0553..1dc2cce99 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -17,10 +19,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md index b27735383..4e517ba68 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md @@ -4,6 +4,8 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "rougail.dynval1.var" if it is defined | @@ -11,13 +13,11 @@ ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh index 14db6be7f..156788c65 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -30,21 +32,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.adoc index cadc8b9d5..0c1a355a0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md index 6a71dc550..ac690416a 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.html index ab0cfbead..691c8d279 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md index cd51c17b7..56479c61b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh index e502482fa..d8ef045c5 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.adoc index 945e97b6f..9b3f9bc85 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md index 7a7217ce5..c78120875 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.html index 4f335f669..affb57e09 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md index d37272fc6..75b9c027a 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh index 0e05e6e56..a35bc8273 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.adoc index 614273edc..3e3926c2a 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md index fca90cba9..3ff15c4ea 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.html index e55811d21..3cf4b77ee 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.html @@ -4,6 +4,8 @@ standard + +
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md index 74fe82948..ad4d7a5c1 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh index 8753cb634..c9c0e7a7d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.adoc index 19f8c101e..894df746b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md index ac81d4153..9e71837c3 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.html index c8dd1f098..6ff477b94 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md index 1ae90c901..cc4e5d2a5 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh index 528059dce..c78a8501f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.adoc index 16bf929de..972f9654d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md index e2d415c7d..b014ff188 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.html index 98523bf0e..95e38c998 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md index 397916e14..f44fa590d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh index 8bced0b5c..460068d3c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc index cf00404b0..22a207d36 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md index 511f643d6..efe48bb5f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.html b/tests/results/test_namespace/60_5family_dynamic_calc_variable.html index 79e4cd68e..dce1d7527 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md index 837cfa616..76c0adf85 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh index bbd83e6ea..0be1c474c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.adoc index bac38199d..65f2a7a18 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.adoc @@ -4,14 +4,16 @@ `basic` -=== A dynamic famify for __val1__ or A dynamic famify for __val2__ -This family builds families dynamically + +=== A dynamic famify for __val1__ or A dynamic famify for __val2__ **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md index 17fc38bbd..ac79a7faf 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>>
A dynamic famify for *val1* or A dynamic famify for *val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**:
- val1
- val2 +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.html b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.html index 1a7ddec83..58b215cf7 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.html @@ -4,12 +4,14 @@ basic + +

A dynamic famify for <i>val1</i> or A dynamic famify for <i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basic Identifiers:
  • val1
  • diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md index 532ae4a32..650a7c9b6 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md @@ -4,15 +4,15 @@ `basic` + + ## A dynamic famify for *val1* or A dynamic famify for *val2* -This family builds families dynamically -**rougail.dyn*val1***
    **rougail.dyn*val2*** -`basic` - -**Identifiers**:
    - val1
    - val2 +| Informations | +|:------------| +| **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**:
    - val1
    - val2 | | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh index 0ac044ebe..bda4670e1 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh @@ -14,26 +14,23 @@ + + A dynamic famify for val1 or A dynamic famify for val2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc index fd19a014f..d1b11a0c7 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc @@ -4,14 +4,16 @@ `basic` -=== A dynamic famify for __val1__ or A dynamic famify for __val2__ -This family builds families dynamically + +=== A dynamic famify for __val1__ or A dynamic famify for __val2__ **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md index 9397cbff9..4f3c9e4c8 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md @@ -1,18 +1,14 @@
    Rougail >>> [!note] Informations -**rougail**
    `basic` +**rougail**
    `basic` >>>
    A dynamic famify for *val1* or A dynamic famify for *val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
    **rougail.dyn*val2***
    `basic` - -**Identifiers**:
    - val1
    - val2 +
    **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**:
    - val1
    - val2 >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.html b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.html index fd9133fd4..ff80c7195 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.html @@ -4,12 +4,14 @@ basic + +

    A dynamic famify for <i>val1</i> or A dynamic famify for <i>val2</i>

    -This family builds families dynamically - rougail.dynval1
    rougail.dynval2 +This family builds families dynamically. + basic Identifiers:
    • val1
    • diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md index 8463e60f6..f2f49613f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md @@ -4,15 +4,15 @@ `basic` + + ## A dynamic famify for *val1* or A dynamic famify for *val2* -This family builds families dynamically -**rougail.dyn*val1***
      **rougail.dyn*val2*** -`basic` - -**Identifiers**:
      - val1
      - val2 +| Informations | +|:------------| +| **rougail.dyn*val1***
      **rougail.dyn*val2***
      This family builds families dynamically.
      `basic`
      **Identifiers**:
      - val1
      - val2 | | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh index 87cd70126..9226e5acc 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -14,26 +14,23 @@ + + A dynamic famify for val1 or A dynamic famify for val2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.adoc index c231f4378..e8f6f91a0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md index c90f690a7..9d6ce64ba 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md @@ -1,7 +1,7 @@
      Rougail >>> [!note] Informations -**rougail**
      `basic` +**rougail**
      `basic` >>> @@ -11,12 +11,8 @@
      dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
      **rougail.dyn*val2***
      `basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
      **rougail.dyn*val1***
      **rougail.dyn*val2***
      This family builds families dynamically.
      `basic`
      **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.html index 7b106c050..34e41b099 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,10 +18,10 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md index 5db2f762b..f90f43ca3 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh index b20407076..aab272649 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.adoc b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.adoc index 709735f50..5439d200f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.adoc @@ -4,14 +4,16 @@ `standard` -=== A dynamic family -This family builds families dynamically + +=== A dynamic family **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` `__hidden__` diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md index 70218bb75..b6e7af5a9 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md @@ -1,18 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` *`hidden`* - -**Hidden**: if suffix == 'val2'**Identifiers**:
- val1
- val2 +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| @@ -21,9 +17,7 @@ This family builds families dynamically
A family >>> [!note] Informations -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` - - +
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.html b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.html index 2ec1805f7..bdfbed2f0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.html +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.html @@ -4,12 +4,14 @@ standard + +

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standard hidden Hidden: if suffix == 'val2' diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md index e70aa45ef..df6ba61b7 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md @@ -4,17 +4,15 @@ `standard` + + ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`standard` *`hidden`* - -**Hidden**: if suffix == 'val2' - -**Identifiers**:
- val1
- val2 +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 | | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -22,9 +20,11 @@ This family builds families dynamically ### A family -**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family** -`standard` + +| Informations | +|:------------| +| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh index eb755d578..ddd1844f0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh @@ -14,29 +14,25 @@ + + A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard   hidden  - Hidden: if suffix == 'val2' - Identifiers: - val1 - val2 - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -49,15 +45,12 @@ This family builds families dynamically A family - rougail.dynval1.family rougail.dynval2.family -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.adoc index edb099459..6117d13e4 100644 --- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -22,14 +24,14 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.__val1___dyn** + **rougail.__val2___dyn** + **rougail.__val3___dyn** + **rougail.__val4___dyn** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md index 6ab53671b..56f4624d0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn**
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.html b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.html index d6d7f782b..5670c1f75 100644 --- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -18,10 +20,10 @@

A dynamic family

-This family builds families dynamically - rougail.val1_dyn
rougail.val2_dyn
rougail.val3_dyn
rougail.val4_dyn +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md index ff832b2e5..0ed4e0343 100644 --- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2
- val3
- val4 | ## A dynamic family -This family builds families dynamically -**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh index a8de19ff9..214c9cb84 100644 --- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -27,23 +29,18 @@ A dynamic family -This family builds families dynamically - - - rougail.val1_dyn rougail.val2_dyn rougail.val3_dyn rougail.val4_dyn +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc index 0ed8491bc..8080014b6 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__** + **rougail.my_dyn_family___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md index ce0f5c37b..4460da3ad 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside.html index 4eb148880..98206cacf 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md index 39481fbda..ce2d03b64 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh index f9ea1ac2c..554791bd2 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1 rougail.my_dyn_family_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc index b76257dc6..8adf4d2ad 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -29,12 +31,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__** + **rougail.my_dyn_family___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md index fa29b8e6d..411fd32f6 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -12,12 +12,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html index a54ade1f9..5f878bfb5 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -18,10 +20,10 @@

A dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md index 86bae45b9..1f27c522d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- the value of the variable "rougail.my_dyn_family_*val1*.var"
- the value of the variable "rougail.my_dyn_family_*val2*.var" | @@ -11,13 +13,11 @@ ## A dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh index ca16e2032..529bbcac0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -32,21 +34,16 @@ A dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1 rougail.my_dyn_family_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc index 733db6abb..0c68203c2 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -29,12 +31,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__** + **rougail.my_dyn_family___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md index 50fbe91e7..70f488aad 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -12,12 +12,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.html index be0e473c9..cc4964b41 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -18,10 +20,10 @@

A dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md index 1153a7eb8..47a9d8883 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- the value of the variable "rougail.my_dyn_family_*val1*.var"
- the value of the variable "rougail.my_dyn_family_*val2*.var" | @@ -11,13 +13,11 @@ ## A dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh index f9571e43a..fddc12fe8 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -32,21 +34,16 @@ A dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1 rougail.my_dyn_family_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc index 0ed8491bc..8080014b6 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__** + **rougail.my_dyn_family___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md index ce0f5c37b..4460da3ad 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.html index 4eb148880..98206cacf 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md index 39481fbda..ce2d03b64 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh index f9ea1ac2c..554791bd2 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1 rougail.my_dyn_family_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc index 3a02f1e7a..124a7a9fd 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__** + **rougail.my_dyn_family___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md index ac223cf16..adbf914bd 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.html index c2c407c03..f556abdb1 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md index e3158a55f..83c4fdb5d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh index d3fa761a9..e6f6c6937 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1 rougail.my_dyn_family_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc index e4836a068..4210fae5e 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__** + **rougail.my_dyn_family___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md index 1c0c274b5..faab9dce3 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.html index d86c2a297..c8d6c2841 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md index 8607e4472..e0fa93f24 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh index f3cc32086..d9f6b806d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1 rougail.my_dyn_family_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc index 265c7c9d2..5c2b2007d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__** + **rougail.my_dyn_family___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md index 580a2dfe7..20de204b1 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.html index be5e790b8..d9c0ce1ad 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md index fd025cb09..10faf71ff 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh index 28e6d0c82..2fa907433 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1 rougail.my_dyn_family_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc index ad6c6c3df..c46f880c7 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,26 +22,26 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__** + **rougail.my_dyn_family___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" ==== A sub dynamic family -This family builds families dynamically - **rougail.my_dyn_family___val1__.subdyn___val1__** + **rougail.my_dyn_family___val1__.subdyn___val2__** + **rougail.my_dyn_family___val2__.subdyn___val1__** + **rougail.my_dyn_family___val2__.subdyn___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md index 0f84b1bdb..357d0a9e7 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,21 +11,13 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>>
A sub dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.my_dyn_family_*val1*.subdyn_*val1***
**rougail.my_dyn_family_*val1*.subdyn_*val2***
**rougail.my_dyn_family_*val2*.subdyn_*val1***
**rougail.my_dyn_family_*val2*.subdyn_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.my_dyn_family_*val1*.subdyn_*val1***
**rougail.my_dyn_family_*val1*.subdyn_*val2***
**rougail.my_dyn_family_*val2*.subdyn_*val1***
**rougail.my_dyn_family_*val2*.subdyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.html index 12a284962..4fec9dd0e 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,20 +18,20 @@

A dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var"

A sub dynamic family

-This family builds families dynamically - rougail.my_dyn_family_val1.subdyn_val1
rougail.my_dyn_family_val1.subdyn_val2
rougail.my_dyn_family_val2.subdyn_val1
rougail.my_dyn_family_val2.subdyn_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md index d83b59421..a63326794 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md @@ -4,29 +4,27 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | ### A sub dynamic family -This family builds families dynamically -**rougail.my_dyn_family_*val1*.subdyn_*val1***
**rougail.my_dyn_family_*val1*.subdyn_*val2***
**rougail.my_dyn_family_*val2*.subdyn_*val1***
**rougail.my_dyn_family_*val2*.subdyn_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.my_dyn_family_*val1*.subdyn_*val1***
**rougail.my_dyn_family_*val1*.subdyn_*val2***
**rougail.my_dyn_family_*val2*.subdyn_*val1***
**rougail.my_dyn_family_*val2*.subdyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh index e52bd7596..61cd430ce 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,43 +27,33 @@ A dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1 rougail.my_dyn_family_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - A sub dynamic family -This family builds families dynamically - - - rougail.my_dyn_family_val1.subdyn_val1 rougail.my_dyn_family_val1.subdyn_val2 rougail.my_dyn_family_val2.subdyn_val1 rougail.my_dyn_family_val2.subdyn_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc index ff79b9eef..344fbc323 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn___val1__** + **rougail.dyn___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md index ae6c3a3a6..95d2e99dc 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn_*val1***
**rougail.dyn_*val2***
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.html index 5da90f91d..74cac897d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dyn_val1
rougail.dyn_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md index 347416dbe..6e5bd9212 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn_*val1***
**rougail.dyn_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh index e67e95352..ef29f1ee1 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dyn_val1 rougail.dyn_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc index 3b0dee853..3df3d941b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ Asuffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn___val1__** + **rougail.dyn___val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md index 010899793..09fd58886 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn_*val1***
**rougail.dyn_*val2***
`standard` - -**Identifiers**: the value of the variable "[`Asuffix variable`](#rougail.var)" +
**rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`Asuffix variable`](#rougail.var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.html index f508c5f6f..cad32131f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dyn_val1
rougail.dyn_val2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md index 663238633..9041594e4 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Asuffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn_*val1***
**rougail.dyn_*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh index ab52718b8..5f58e4dbb 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dyn_val1 rougail.dyn_val2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.adoc b/tests/results/test_namespace/60_6family_dynamic_inside.adoc index a239ba995..8020bd6ea 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_inside.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.__val1___dyn** + **rougail.__val2___dyn** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md index 055a2a51d..baac48884 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.html b/tests/results/test_namespace/60_6family_dynamic_inside.html index cb19d6b02..86efcfad0 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.html +++ b/tests/results/test_namespace/60_6family_dynamic_inside.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.val1_dyn
rougail.val2_dyn +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.md b/tests/results/test_namespace/60_6family_dynamic_inside.md index 80a689ec2..390374abc 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.*val1*_dyn**
**rougail.*val2*_dyn** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.sh b/tests/results/test_namespace/60_6family_dynamic_inside.sh index 5859bb1a1..bccf0400a 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.sh +++ b/tests/results/test_namespace/60_6family_dynamic_inside.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.val1_dyn rougail.val2_dyn +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc b/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc index 1bd743e25..cb6c92408 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.__val1___dyn** + **rougail.__val2___dyn** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md index 8833d0f59..cc19f4095 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
`standard` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.html b/tests/results/test_namespace/60_6family_dynamic_inside_empty.html index cbb98da63..ae5ff37f5 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.html +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.val1_dyn
rougail.val2_dyn +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md index 4f3c53a9f..971145771 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.*val1*_dyn**
**rougail.*val2*_dyn** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh index df481d7cc..788ae2a1e 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.val1_dyn rougail.val2_dyn +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.adoc b/tests/results/test_namespace/60_6family_dynamic_leadership.adoc index 584993934..6dbbcec82 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,24 +22,24 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" ==== A leadership -This family contains lists of variable blocks - **rougail.dyn__val1__.leadership** + **rougail.dyn__val2__.leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md index 9c84edd97..5133db4fe 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,21 +11,13 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
`basic` - - +
**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.html b/tests/results/test_namespace/60_6family_dynamic_leadership.html index c556b77c7..918006156 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.html +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,20 +18,20 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var"

A leadership

-This family contains lists of variable blocks - rougail.dynval1.leadership
rougail.dynval2.leadership +This family contains lists of variable blocks. + basic
Variable Description
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.md b/tests/results/test_namespace/60_6family_dynamic_leadership.md index 4ddb1a7e3..166fb634a 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.md @@ -4,27 +4,27 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | ### A leadership -This family contains lists of variable blocks -**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership** -`basic` +| Informations | +|:------------| +| **rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.sh b/tests/results/test_namespace/60_6family_dynamic_leadership.sh index 6ffa47b00..b4f30bb2d 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.sh +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,38 +27,29 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - A leadership -This family contains lists of variable blocks - - - rougail.dynval1.leadership rougail.dynval2.leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc index b85577dad..cc29973ef 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,24 +22,24 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" ==== A leadership -This family contains lists of variable blocks - **rougail.dyn__val1__.leadership** + **rougail.dyn__val2__.leadership** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md index d580111f9..ae1dd301f 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,21 +11,13 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" >>>
A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
`basic` - - +
**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` >>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html index e45e5a220..0bf0bec96 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html @@ -4,6 +4,8 @@ basic + +
@@ -16,20 +18,20 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var"

A leadership

-This family contains lists of variable blocks - rougail.dynval1.leadership
rougail.dynval2.leadership +This family contains lists of variable blocks. + basic
Variable Description
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md index 1448f24b9..c9997b196 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md @@ -4,27 +4,27 @@ `basic` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | ### A leadership -This family contains lists of variable blocks -**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership** -`basic` +| Informations | +|:------------| +| **rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh index 5cd772e81..eda6e337c 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,38 +27,29 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - A leadership -This family contains lists of variable blocks - - - rougail.dynval1.leadership rougail.dynval2.leadership +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc index 3e03d1948..77a254c4d 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" @@ -44,14 +46,14 @@ A dynamic variable. + ==== A Second dynamic variable -This family builds families dynamically - **rougail.dyn__val1__.dyn___tval1__** + **rougail.dyn__val1__.dyn___tval2__** + **rougail.dyn__val2__.dyn___tval1__** + **rougail.dyn__val2__.dyn___tval2__** +This family builds families dynamically. + `standard` **Identifiers**: diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md index e1178bf2c..445ba9a03 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -24,12 +20,8 @@ This family builds families dynamically
A Second dynamic variable -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
`standard` - -**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" +
**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html index 9c75d98de..92c12ab2b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html @@ -4,6 +4,8 @@ standard + +
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" @@ -35,10 +37,10 @@ This family builds families dynamically

A Second dynamic variable

-This family builds families dynamically - rougail.dynval1.dyn_tval1
rougail.dynval1.dyn_tval2
rougail.dynval2.dyn_tval1
rougail.dynval2.dyn_tval2 +This family builds families dynamically. + standardIdentifiers:
  • the value of the variable "rougail.dynval1.var"
  • diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md index 50f6a701c..5493c3dad 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
    [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
    **Default**:
    - val1
    - val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
    **rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `standard`
    **Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,13 +24,11 @@ This family builds families dynamically ### A Second dynamic variable -This family builds families dynamically -**rougail.dyn*val1*.dyn_*tval1***
    **rougail.dyn*val1*.dyn_*tval2***
    **rougail.dyn*val2*.dyn_*tval1***
    **rougail.dyn*val2*.dyn_*tval2*** -`standard` - -**Identifiers**:
    - the value of the variable "rougail.dyn*val1*.var"
    - the value of the variable "rougail.dyn*val2*.var" +| Informations | +|:------------| +| **rougail.dyn*val1*.dyn_*tval1***
    **rougail.dyn*val1*.dyn_*tval2***
    **rougail.dyn*val2*.dyn_*tval1***
    **rougail.dyn*val2*.dyn_*tval2***
    This family builds families dynamically.
    `standard`
    **Identifiers**:
    - the value of the variable "rougail.dyn*val1*.var"
    - the value of the variable "rougail.dyn*val2*.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh index 1bd568219..341a9fc9e 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -53,25 +50,20 @@ This family builds families dynamically A Second dynamic variable -This family builds families dynamically - - - rougail.dynval1.dyn_tval1 rougail.dynval1.dyn_tval2 rougail.dynval2.dyn_tval1 rougail.dynval2.dyn_tval2 +This family builds families dynamically.  standard  - Identifiers: - the value of the variable "rougail.dynval1.var" - the value of the variable "rougail.dynval2.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.adoc index 3e03d1948..77a254c4d 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" @@ -44,14 +46,14 @@ A dynamic variable. + ==== A Second dynamic variable -This family builds families dynamically - **rougail.dyn__val1__.dyn___tval1__** + **rougail.dyn__val1__.dyn___tval2__** + **rougail.dyn__val2__.dyn___tval1__** + **rougail.dyn__val2__.dyn___tval2__** +This family builds families dynamically. + `standard` **Identifiers**: diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md index e1178bf2c..445ba9a03 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md @@ -1,7 +1,7 @@
    Rougail >>> [!note] Informations -**rougail**
    `standard` +**rougail**
    `standard` >>> @@ -11,12 +11,8 @@
    A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
    **rougail.dyn*val2***
    `standard` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
    **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `standard`
    **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -24,12 +20,8 @@ This family builds families dynamically
    A Second dynamic variable -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1*.dyn_*tval1***
    **rougail.dyn*val1*.dyn_*tval2***
    **rougail.dyn*val2*.dyn_*tval1***
    **rougail.dyn*val2*.dyn_*tval2***
    `standard` - -**Identifiers**:
    - the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
    - the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" +
    **rougail.dyn*val1*.dyn_*tval1***
    **rougail.dyn*val1*.dyn_*tval2***
    **rougail.dyn*val2*.dyn_*tval1***
    **rougail.dyn*val2*.dyn_*tval2***
    This family builds families dynamically.
    `standard`
    **Identifiers**:
    - the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
    - the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.html index 9c75d98de..92c12ab2b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.html +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" @@ -35,10 +37,10 @@ This family builds families dynamically

A Second dynamic variable

-This family builds families dynamically - rougail.dynval1.dyn_tval1
rougail.dynval1.dyn_tval2
rougail.dynval2.dyn_tval1
rougail.dynval2.dyn_tval2 +This family builds families dynamically. + standardIdentifiers:
  • the value of the variable "rougail.dynval1.var"
  • diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md index 50f6a701c..5493c3dad 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
    [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
    **Default**:
    - val1
    - val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
    **rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `standard`
    **Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,13 +24,11 @@ This family builds families dynamically ### A Second dynamic variable -This family builds families dynamically -**rougail.dyn*val1*.dyn_*tval1***
    **rougail.dyn*val1*.dyn_*tval2***
    **rougail.dyn*val2*.dyn_*tval1***
    **rougail.dyn*val2*.dyn_*tval2*** -`standard` - -**Identifiers**:
    - the value of the variable "rougail.dyn*val1*.var"
    - the value of the variable "rougail.dyn*val2*.var" +| Informations | +|:------------| +| **rougail.dyn*val1*.dyn_*tval1***
    **rougail.dyn*val1*.dyn_*tval2***
    **rougail.dyn*val2*.dyn_*tval1***
    **rougail.dyn*val2*.dyn_*tval2***
    This family builds families dynamically.
    `standard`
    **Identifiers**:
    - the value of the variable "rougail.dyn*val1*.var"
    - the value of the variable "rougail.dyn*val2*.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh index 1bd568219..341a9fc9e 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -53,25 +50,20 @@ This family builds families dynamically A Second dynamic variable -This family builds families dynamically - - - rougail.dynval1.dyn_tval1 rougail.dynval1.dyn_tval2 rougail.dynval2.dyn_tval1 rougail.dynval2.dyn_tval2 +This family builds families dynamically.  standard  - Identifiers: - the value of the variable "rougail.dynval1.var" - the value of the variable "rougail.dynval2.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.adoc index 08e3ea9c1..b0ddfe2ba 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,26 +22,26 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.__val1__** + **rougail.__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" ==== A dynamic family -This family builds families dynamically - **rougail.__val1__.__val1__** + **rougail.__val1__.__val2__** + **rougail.__val2__.__val1__** + **rougail.__val2__.__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md index 3e850961d..f37a96381 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md @@ -1,7 +1,7 @@
    Rougail >>> [!note] Informations -**rougail**
    `basic` +**rougail**
    `basic` >>> @@ -11,21 +11,13 @@
    A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.*val1***
    **rougail.*val2***
    `basic` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
    **rougail.*val1***
    **rougail.*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>>
    A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.*val1*.*val1***
    **rougail.*val1*.*val2***
    **rougail.*val2*.*val1***
    **rougail.*val2*.*val2***
    `basic` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
    **rougail.*val1*.*val1***
    **rougail.*val1*.*val2***
    **rougail.*val2*.*val1***
    **rougail.*val2*.*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.html index 4880fd936..bcf91a743 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.html +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,20 +18,20 @@

A dynamic family

-This family builds families dynamically - rougail.val1
rougail.val2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var"

A dynamic family

-This family builds families dynamically - rougail.val1.val1
rougail.val1.val2
rougail.val2.val1
rougail.val2.val2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md index 230935db8..eb4dc2966 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md @@ -4,29 +4,27 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 | ## A dynamic family -This family builds families dynamically -**rougail.*val1***
**rougail.*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.*val1***
**rougail.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | ### A dynamic family -This family builds families dynamically -**rougail.*val1*.*val1***
**rougail.*val1*.*val2***
**rougail.*val2*.*val1***
**rougail.*val2*.*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.*val1*.*val1***
**rougail.*val1*.*val2***
**rougail.*val2*.*val1***
**rougail.*val2*.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh index b34f200c1..84157ebc2 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,43 +27,33 @@ A dynamic family -This family builds families dynamically - - - rougail.val1 rougail.val2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - A dynamic family -This family builds families dynamically - - - rougail.val1.val1 rougail.val1.val2 rougail.val2.val1 rougail.val2.val2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc index 13a8ff745..58a479f4a 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" @@ -44,14 +46,14 @@ A dynamic variable. + ==== A Second dynamic variable -This family builds families dynamically - **rougail.dyn__val1__.dyn___tval1__** + **rougail.dyn__val1__.dyn___tval2__** + **rougail.dyn__val2__.dyn___tval1__** + **rougail.dyn__val2__.dyn___tval2__** +This family builds families dynamically. + `standard` **Identifiers**: diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md index 86a4c8330..af78db8e3 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`standard` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| @@ -24,12 +20,8 @@ This family builds families dynamically
A Second dynamic variable -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
`standard` - -**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" +
**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.html index f082de691..57213183b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.html +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" @@ -35,10 +37,10 @@ This family builds families dynamically

A Second dynamic variable

-This family builds families dynamically - rougail.dynval1.dyn_tval1
rougail.dynval1.dyn_tval2
rougail.dynval2.dyn_tval1
rougail.dynval2.dyn_tval2 +This family builds families dynamically. + standardIdentifiers:
  • the value of the variable "rougail.dynval1.var"
  • diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md index b85b3aa21..626ecb33d 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
    [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
    **Examples**:
    - val1
    - val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
    **rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `standard`
    **Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,13 +24,11 @@ This family builds families dynamically ### A Second dynamic variable -This family builds families dynamically -**rougail.dyn*val1*.dyn_*tval1***
    **rougail.dyn*val1*.dyn_*tval2***
    **rougail.dyn*val2*.dyn_*tval1***
    **rougail.dyn*val2*.dyn_*tval2*** -`standard` - -**Identifiers**:
    - the value of the variable "rougail.dyn*val1*.var"
    - the value of the variable "rougail.dyn*val2*.var" +| Informations | +|:------------| +| **rougail.dyn*val1*.dyn_*tval1***
    **rougail.dyn*val1*.dyn_*tval2***
    **rougail.dyn*val2*.dyn_*tval1***
    **rougail.dyn*val2*.dyn_*tval2***
    This family builds families dynamically.
    `standard`
    **Identifiers**:
    - the value of the variable "rougail.dyn*val1*.var"
    - the value of the variable "rougail.dyn*val2*.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh index d80a87e4a..bbb1db1fa 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -53,25 +50,20 @@ This family builds families dynamically A Second dynamic variable -This family builds families dynamically - - - rougail.dynval1.dyn_tval1 rougail.dynval1.dyn_tval2 rougail.dynval2.dyn_tval1 rougail.dynval2.dyn_tval2 +This family builds families dynamically.  standard  - Identifiers: - the value of the variable "rougail.dynval1.var" - the value of the variable "rougail.dynval2.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.adoc index f4ca8cdbe..a57b4f076 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,12 +22,12 @@ A identifier variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `standard` **Identifiers**: the value of the variable "rougail.var" @@ -43,12 +45,12 @@ A dynamic variable. ==== A Second dynamic variable -This family builds families dynamically - **rougail.dyn__val1__.dyn___example__** + **rougail.dyn__val2__.dyn___example__** +This family builds families dynamically. + `standard` **Identifiers**: diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md index 98e767a3b..b6c538e81 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md @@ -1,7 +1,7 @@
    Rougail >>> [!note] Informations -**rougail**
    `standard` +**rougail**
    `standard` >>> @@ -11,12 +11,8 @@
    A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
    **rougail.dyn*val2***
    `standard` - -**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
    **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `standard`
    **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" >>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| @@ -24,12 +20,8 @@ This family builds families dynamically
    A Second dynamic variable -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1*.dyn_*example***
    **rougail.dyn*val2*.dyn_*example***
    `standard` - -**Identifiers**:
    - the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
    - the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" +
    **rougail.dyn*val1*.dyn_*example***
    **rougail.dyn*val2*.dyn_*example***
    This family builds families dynamically.
    `standard`
    **Identifiers**:
    - the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
    - the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.html index a0d64d063..8d044607f 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.html +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -16,10 +18,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + standardIdentifiers: the value of the variable "rougail.var" @@ -35,10 +37,10 @@ This family builds families dynamically

A Second dynamic variable

-This family builds families dynamically - rougail.dynval1.dyn_example
rougail.dynval2.dyn_example +This family builds families dynamically. + standardIdentifiers:
  • the value of the variable "rougail.dynval1.var"
  • diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md index 970dd38ba..a177a6ef7 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md @@ -4,19 +4,19 @@ `standard` + + | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
    [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
    **Default**:
    - val1
    - val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
    **rougail.dyn*val2*** -`standard` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `standard`
    **Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,13 +24,11 @@ This family builds families dynamically ### A Second dynamic variable -This family builds families dynamically -**rougail.dyn*val1*.dyn_*example***
    **rougail.dyn*val2*.dyn_*example*** -`standard` - -**Identifiers**:
    - the value of the variable "rougail.dyn*val1*.var"
    - the value of the variable "rougail.dyn*val2*.var" +| Informations | +|:------------| +| **rougail.dyn*val1*.dyn_*example***
    **rougail.dyn*val2*.dyn_*example***
    This family builds families dynamically.
    `standard`
    **Identifiers**:
    - the value of the variable "rougail.dyn*val1*.var"
    - the value of the variable "rougail.dyn*val2*.var" | | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh index 065cbf961..2079a2859 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,21 +27,16 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  standard  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -53,23 +50,18 @@ This family builds families dynamically A Second dynamic variable -This family builds families dynamically - - - rougail.dynval1.dyn_example rougail.dynval2.dyn_example +This family builds families dynamically.  standard  - Identifiers: - the value of the variable "rougail.dynval1.var" - the value of the variable "rougail.dynval2.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.adoc b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.adoc index 6c6b4d468..d44169a90 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,26 +22,26 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" ==== dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__.dyn__val1__** + **rougail.dyn__val1__.dyn__val2__** + **rougail.dyn__val2__.dyn__val1__** + **rougail.dyn__val2__.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md index da3bbae56..7739347cd 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md @@ -1,7 +1,7 @@
    Rougail >>> [!note] Informations -**rougail**
    `basic` +**rougail**
    `basic` >>> @@ -11,21 +11,13 @@
    dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
    **rougail.dyn*val2***
    `basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
    **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>>
    dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1*.dyn*val1***
    **rougail.dyn*val1*.dyn*val2***
    **rougail.dyn*val2*.dyn*val1***
    **rougail.dyn*val2*.dyn*val2***
    `basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
    **rougail.dyn*val1*.dyn*val1***
    **rougail.dyn*val1*.dyn*val2***
    **rougail.dyn*val2*.dyn*val1***
    **rougail.dyn*val2*.dyn*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.html b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.html index 3ed32b529..41220b42e 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.html +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,20 +18,20 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1"

dyn<i>val1</i>, dyn<i>val1</i>, dyn<i>val2</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1.dynval1
rougail.dynval1.dynval2
rougail.dynval2.dynval1
rougail.dynval2.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md index d8c6800a8..a12858a8b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md @@ -4,29 +4,27 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | ### dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh index 33f74f337..c2a2001e6 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,43 +27,33 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1.dynval1 rougail.dynval1.dynval2 rougail.dynval2.dynval1 rougail.dynval2.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc index 1114c508c..5124b49dd 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -20,26 +22,26 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" ==== dyn__val1__ or dyn__val2__ -This family builds families dynamically - **rougail.dyn__val1__.dyn__val1__** + **rougail.dyn__val1__.dyn__val2__** + **rougail.dyn__val2__.dyn__val1__** + **rougail.dyn__val2__.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md index 6e278bf01..fcd5eb2e0 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,21 +11,13 @@
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>>
dyn*val1* or dyn*val2* -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
`basic` - -**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" >>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.html b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.html index c8f8464d3..7015bd6a6 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.html +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -16,20 +18,20 @@

dyn<i>val1</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1"

dyn<i>val1</i>, dyn<i>val1</i>, dyn<i>val2</i> or dyn<i>val2</i>

-This family builds families dynamically - rougail.dynval1.dynval1
rougail.dynval1.dynval2
rougail.dynval2.dynval1
rougail.dynval2.dynval2 +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var1" diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md index fea99f885..23d95304c 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md @@ -4,29 +4,27 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 | ## dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1***
**rougail.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | ### dyn*val1* or dyn*val2* -This family builds families dynamically -**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2*** -`basic` - -**Identifiers**: the value of the variable "rougail.var1" +| Informations | +|:------------| +| **rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh index aa30387d1..57241821b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -25,43 +27,33 @@ dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - dynval1 or dynval2 -This family builds families dynamically - - - rougail.dynval1.dynval1 rougail.dynval1.dynval2 rougail.dynval2.dynval1 rougail.dynval2.dynval2 +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var1" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_9extra_dynamic.adoc b/tests/results/test_namespace/60_9extra_dynamic.adoc index 6a137818c..2e0667df7 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.adoc +++ b/tests/results/test_namespace/60_9extra_dynamic.adoc @@ -4,6 +4,8 @@ `standard` + + [cols="1a,1a"] |==== | Variable | Description @@ -23,13 +25,15 @@ A variable. + `basic` -=== dyn___a__ -This family builds families dynamically + +=== dyn___a__ **extra.dyn___a__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md index 167d039a8..3dfd58f25 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md +++ b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>> @@ -14,18 +14,14 @@
Extra >>> [!note] Informations -**extra**
`basic` +**extra**
`basic` >>>
dyn_*a* -This family builds families dynamically - >>> [!note] Informations -**extra.dyn_*a***
`basic` - -**Identifiers**: the value of the variable "[`A variable`](#rougail.var)" +
**extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic.html b/tests/results/test_namespace/60_9extra_dynamic.html index 9f5886104..28b4fd5d5 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.html +++ b/tests/results/test_namespace/60_9extra_dynamic.html @@ -4,6 +4,8 @@ standard + +
Variable Description
@@ -19,12 +21,14 @@ basic + +

dyn_<i>a</i>

-This family builds families dynamically - extra.dyn_a +This family builds families dynamically. + basicIdentifiers: the value of the variable "rougail.var" diff --git a/tests/results/test_namespace/60_9extra_dynamic.md b/tests/results/test_namespace/60_9extra_dynamic.md index 421c2ac14..41ebccbfe 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.md +++ b/tests/results/test_namespace/60_9extra_dynamic.md @@ -4,6 +4,8 @@ `standard` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- a | @@ -14,15 +16,15 @@ `basic` + + ## dyn_*a* -This family builds families dynamically -**extra.dyn_*a*** -`basic` - -**Identifiers**: the value of the variable "rougail.var" +| Informations | +|:------------| +| **extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic.sh b/tests/results/test_namespace/60_9extra_dynamic.sh index 0768af671..ab272a707 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.sh +++ b/tests/results/test_namespace/60_9extra_dynamic.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -36,23 +38,20 @@ + + dyn_a -This family builds families dynamically - - - extra.dyn_a +This family builds families dynamically.  basic  - Identifiers: the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.adoc b/tests/results/test_namespace/60_9extra_dynamic_extra.adoc index 8a8064b94..73804af54 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.adoc +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.adoc @@ -4,6 +4,8 @@ `standard` + + === Général @@ -30,6 +32,8 @@ No change. + `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -45,11 +49,11 @@ A variable. + === dyn___a__ -This family builds families dynamically - **extra.dyn___a__** +This family builds families dynamically. + `basic` **Identifiers**: the value of the variable "extra.var" diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md index 99b185394..c5ab7df02 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md @@ -1,16 +1,14 @@
Rougail >>> [!note] Informations -**rougail**
`standard` +**rougail**
`standard` >>>
Général >>> [!note] Informations -**rougail.general**
`standard` - - +
**rougail.general**
`standard` >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| @@ -23,7 +21,7 @@
Extra >>> [!note] Informations -**extra**
`basic` +**extra**
`basic` >>> @@ -33,12 +31,8 @@
dyn_*a* -This family builds families dynamically - >>> [!note] Informations -**extra.dyn_*a***
`basic` - -**Identifiers**: the value of the variable "[`A variable`](#extra.var)" +
**extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A variable`](#extra.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.html b/tests/results/test_namespace/60_9extra_dynamic_extra.html index 5bcb40477..65241d704 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.html +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.html @@ -4,6 +4,8 @@ standard + +

Général

rougail.general @@ -25,6 +27,8 @@ basic + +
Variable Description
@@ -36,10 +40,10 @@

dyn_<i>a</i>

-This family builds families dynamically - extra.dyn_a +This family builds families dynamically. + basicIdentifiers: the value of the variable "extra.var" diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.md b/tests/results/test_namespace/60_9extra_dynamic_extra.md index b5b29c11d..1eb0db102 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.md +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.md @@ -4,11 +4,15 @@ `standard` + + ## Général -**rougail.general** -`standard` + +| Informations | +|:------------| +| **rougail.general**
`standard` | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,19 +24,19 @@ `basic` + + | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **extra.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- a | ## dyn_*a* -This family builds families dynamically -**extra.dyn_*a*** -`basic` - -**Identifiers**: the value of the variable "extra.var" +| Informations | +|:------------| +| **extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "extra.var" | | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.sh b/tests/results/test_namespace/60_9extra_dynamic_extra.sh index e71100dca..4a29b29b0 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.sh @@ -14,17 +14,16 @@ - Général + Général + rougail.general -  standard  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -48,6 +47,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -60,20 +61,15 @@ dyn_a -This family builds families dynamically - - - extra.dyn_a +This family builds families dynamically.  basic  - Identifiers: the value of the variable "extra.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc b/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc index 1ef4ec07d..cd0f429b2 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc @@ -4,6 +4,8 @@ `basic` + + [cols="1a,1a"] |==== | Variable | Description @@ -17,12 +19,12 @@ A suffix variable. + === A dynamic family -This family builds families dynamically - **rougail.dyn__val1__** + **rougail.dyn__val2__** +This family builds families dynamically. + `basic` **Identifiers**: diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md index f048c9e96..0311f8de2 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md @@ -1,7 +1,7 @@
Rougail >>> [!note] Informations -**rougail**
`basic` +**rougail**
`basic` >>> @@ -11,12 +11,8 @@
A dynamic family -This family builds families dynamically - >>> [!note] Informations -**rougail.dyn*val1***
**rougail.dyn*val2***
`basic` - -**Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#rougail.var)" +
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#rougail.var)" >>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.html b/tests/results/test_namespace/60_9family_dynamic_calc_both.html index 4f3af9c24..2e13b6a98 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.html +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.html @@ -4,6 +4,8 @@ basic + +
Variable Description
@@ -15,10 +17,10 @@

A dynamic family

-This family builds families dynamically - rougail.dynval1
rougail.dynval2 +This family builds families dynamically. + basicIdentifiers:
  • val1
  • diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.md b/tests/results/test_namespace/60_9family_dynamic_calc_both.md index 9c4219f22..46a306a2a 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.md +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.md @@ -4,19 +4,19 @@ `basic` + + | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
    [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable.
    **Default**: val2 | ## A dynamic family -This family builds families dynamically -**rougail.dyn*val1***
    **rougail.dyn*val2*** -`basic` - -**Identifiers**:
    - val1
    - the value of the variable "rougail.var" +| Informations | +|:------------| +| **rougail.dyn*val1***
    **rougail.dyn*val2***
    This family builds families dynamically.
    `basic`
    **Identifiers**:
    - val1
    - the value of the variable "rougail.var" | | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace/60_9family_dynamic_calc_both.sh index 61dcc34c3..d32273e98 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.sh @@ -12,6 +12,8 @@ + + ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,23 +25,18 @@ A dynamic family -This family builds families dynamically - - - rougail.dynval1 rougail.dynval2 +This family builds families dynamically.  basic  - Identifiers: - val1 - the value of the variable "rougail.var" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/68_0family_leadership_mode.adoc b/tests/results/test_namespace/68_0family_leadership_mode.adoc index 5b45ed941..9486324e0 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.adoc +++ b/tests/results/test_namespace/68_0family_leadership_mode.adoc @@ -4,13 +4,15 @@ `basic` -=== A leadership -This family contains lists of variable blocks + +=== A leadership **rougail.leader** +This family contains lists of variable blocks. + `basic` [cols="1a,1a"] diff --git a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md index 37bb11d30..d878f6f39 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md +++ b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md @@ -1,18 +1,14 @@
    Rougail >>> [!note] Informations -**rougail**
    `basic` +**rougail**
    `basic` >>>
    A leadership -This family contains lists of variable blocks - >>> [!note] Informations -**rougail.leader**
    `basic` - - +
    **rougail.leader**
    This family contains lists of variable blocks.
    `basic` >>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| diff --git a/tests/results/test_namespace/68_0family_leadership_mode.html b/tests/results/test_namespace/68_0family_leadership_mode.html index 46a3c41d6..dc80aa503 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.html +++ b/tests/results/test_namespace/68_0family_leadership_mode.html @@ -4,12 +4,14 @@ basic + +

    A leadership

    -This family contains lists of variable blocks - rougail.leader +This family contains lists of variable blocks. + basic
Variable Description
diff --git a/tests/results/test_namespace/68_0family_leadership_mode.md b/tests/results/test_namespace/68_0family_leadership_mode.md index affd4aa60..44ed0123a 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.md +++ b/tests/results/test_namespace/68_0family_leadership_mode.md @@ -4,13 +4,15 @@ `basic` + + ## A leadership -This family contains lists of variable blocks -**rougail.leader** -`basic` +| Informations | +|:------------| +| **rougail.leader**
This family contains lists of variable blocks.
`basic` | | Variable                                                                                                        | Description                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/68_0family_leadership_mode.sh b/tests/results/test_namespace/68_0family_leadership_mode.sh index d931fa412..48864bdad 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.sh +++ b/tests/results/test_namespace/68_0family_leadership_mode.sh @@ -14,20 +14,18 @@ + + A leadership -This family contains lists of variable blocks - - - rougail.leader +This family contains lists of variable blocks.  basic  - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ diff --git a/tests/results/test_namespace/warnings_01_6string_multi_length b/tests/results/test_namespace/warnings_01_6string_multi_length new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/results/test_namespace/warnings_01_6string_multi_length @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6string_multi_length.adoc b/tests/results/test_namespace_examples/01_6string_multi_length.adoc new file mode 100644 index 000000000..c35909a62 --- /dev/null +++ b/tests/results/test_namespace_examples/01_6string_multi_length.adoc @@ -0,0 +1,14 @@ +== Example with all variables modifiable + +[,yaml] +---- +--- +rougail: # Rougail + var1: # The variable + - val1 + - val2 + - val3 + var2: # The variable + - val4 + - val5 +---- diff --git a/tests/results/test_namespace_examples/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_examples/01_6string_multi_length.gitlab.md new file mode 100644 index 000000000..f05092a0b --- /dev/null +++ b/tests/results/test_namespace_examples/01_6string_multi_length.gitlab.md @@ -0,0 +1,15 @@ +
Example with all variables modifiable + +```yaml +--- +rougail: # Rougail + var1: # The variable + - val1 + - val2 + - val3 + var2: # The variable + - val4 + - val5 +``` +
+ diff --git a/tests/results/test_namespace_examples/01_6string_multi_length.html b/tests/results/test_namespace_examples/01_6string_multi_length.html new file mode 100644 index 000000000..5a45de768 --- /dev/null +++ b/tests/results/test_namespace_examples/01_6string_multi_length.html @@ -0,0 +1,10 @@ +

Example with all variables modifiable

+ +
rougail:                      # Rougail
+  var1:                       # The variable
+    - val1
+    - val2
+    - val3
+  var2:                       # The variable
+    - val4
+    - val5
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6string_multi_length.md b/tests/results/test_namespace_examples/01_6string_multi_length.md new file mode 100644 index 000000000..9779e9167 --- /dev/null +++ b/tests/results/test_namespace_examples/01_6string_multi_length.md @@ -0,0 +1,13 @@ +# Example with all variables modifiable + +```yaml +--- +rougail: + var1: + - val1 + - val2 + - val3 + var2: + - val4 + - val5 +``` diff --git a/tests/results/test_namespace_examples/01_6string_multi_length.sh b/tests/results/test_namespace_examples/01_6string_multi_length.sh new file mode 100644 index 000000000..6cc248e98 --- /dev/null +++ b/tests/results/test_namespace_examples/01_6string_multi_length.sh @@ -0,0 +1,15 @@ + + +Example with all variables modifiable + + +---  +rougail: # Rougail  + var1: # The variable  + - val1  + - val2  + - val3  + var2: # The variable  + - val4  + - val5  + diff --git a/tests/results/test_namespace_examples/warnings_01_6string_multi_length b/tests/results/test_namespace_examples/warnings_01_6string_multi_length new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/results/test_namespace_examples/warnings_01_6string_multi_length @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/results/test_namespace_examples_comment/01_6string_multi_length.adoc b/tests/results/test_namespace_examples_comment/01_6string_multi_length.adoc new file mode 100644 index 000000000..c35909a62 --- /dev/null +++ b/tests/results/test_namespace_examples_comment/01_6string_multi_length.adoc @@ -0,0 +1,14 @@ +== Example with all variables modifiable + +[,yaml] +---- +--- +rougail: # Rougail + var1: # The variable + - val1 + - val2 + - val3 + var2: # The variable + - val4 + - val5 +---- diff --git a/tests/results/test_namespace_examples_comment/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_examples_comment/01_6string_multi_length.gitlab.md new file mode 100644 index 000000000..f05092a0b --- /dev/null +++ b/tests/results/test_namespace_examples_comment/01_6string_multi_length.gitlab.md @@ -0,0 +1,15 @@ +
Example with all variables modifiable + +```yaml +--- +rougail: # Rougail + var1: # The variable + - val1 + - val2 + - val3 + var2: # The variable + - val4 + - val5 +``` +
+ diff --git a/tests/results/test_namespace_examples_comment/01_6string_multi_length.html b/tests/results/test_namespace_examples_comment/01_6string_multi_length.html new file mode 100644 index 000000000..5a45de768 --- /dev/null +++ b/tests/results/test_namespace_examples_comment/01_6string_multi_length.html @@ -0,0 +1,10 @@ +

Example with all variables modifiable

+ +
rougail:                      # Rougail
+  var1:                       # The variable
+    - val1
+    - val2
+    - val3
+  var2:                       # The variable
+    - val4
+    - val5
\ No newline at end of file diff --git a/tests/results/test_namespace_examples_comment/01_6string_multi_length.md b/tests/results/test_namespace_examples_comment/01_6string_multi_length.md new file mode 100644 index 000000000..56e643885 --- /dev/null +++ b/tests/results/test_namespace_examples_comment/01_6string_multi_length.md @@ -0,0 +1,13 @@ +# Example with all variables modifiable + +```yaml +--- +rougail: # Rougail + var1: # The variable + - val1 + - val2 + - val3 + var2: # The variable + - val4 + - val5 +``` diff --git a/tests/results/test_namespace_examples_comment/01_6string_multi_length.sh b/tests/results/test_namespace_examples_comment/01_6string_multi_length.sh new file mode 100644 index 000000000..6cc248e98 --- /dev/null +++ b/tests/results/test_namespace_examples_comment/01_6string_multi_length.sh @@ -0,0 +1,15 @@ + + +Example with all variables modifiable + + +---  +rougail: # Rougail  + var1: # The variable  + - val1  + - val2  + - val3  + var2: # The variable  + - val4  + - val5  + diff --git a/tests/results/test_namespace_examples_comment/warnings_01_6string_multi_length b/tests/results/test_namespace_examples_comment/warnings_01_6string_multi_length new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/results/test_namespace_examples_comment/warnings_01_6string_multi_length @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.gitlab.md index 2d43d90b3..acb064988 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.gitlab.md +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.gitlab.md @@ -1,13 +1,10 @@
New variables -| Variable | Description | -|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| -| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | -| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | +| Variable | Description | +|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | +| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.md index 42e9c900e..aac940ba6 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.md +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.md @@ -3,9 +3,6 @@ | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | | **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.gitlab.md index 094de8cef..a772af06d 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.gitlab.md +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.gitlab.md @@ -1,9 +1,6 @@ -| Variable | Description | -|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| -| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | -| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | +| Variable | Description | +|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | +| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.md index c9ae9a3a3..a488721d3 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.md +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.md @@ -1,9 +1,6 @@ | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | | **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.adoc b/tests/results/test_namespace_without_family/01_6string_multi_length.adoc new file mode 100644 index 000000000..7a2367d36 --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.adoc @@ -0,0 +1,30 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validator**: needs exactly 3 values + +**Default**: + +* val1 +* val2 +* val3 +| + +**rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validators**: + +* needs a minimum of 1 values +* needs a maximum of 4 values + +**Default**: + +* val4 +* val5 +|==== + diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.adoc b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.adoc new file mode 100644 index 000000000..bf6e0515d --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.adoc @@ -0,0 +1,32 @@ +== New variables + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validator**: needs exactly 3 values + +**Default**: + +* val1 +* val2 +* val3 +| + +**rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validators**: + +* needs a minimum of 1 values +* needs a maximum of 4 values + +**Default**: + +* val4 +* val5 +|==== + diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.gitlab.md b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.gitlab.md new file mode 100644 index 000000000..663bd58d7 --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.gitlab.md @@ -0,0 +1,9 @@ +
New variables + +| Variable | Description | +|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + +
+ diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.html b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.html new file mode 100644 index 000000000..c559d797a --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.html @@ -0,0 +1,16 @@ +

New variables

+ +
+ + + + + + + +
Variable Description
rougail.var1
string standard mandatory unique multiple
The variable.
Validator: needs exactly 3 values
Default:
  • val1
  • +
  • val2
  • +
  • val3
rougail.var2
string standard mandatory unique multiple
The variable.
Validators:
  • needs a minimum of 1 values
  • +
  • needs a maximum of 4 values

Default:
  • val4
  • +
  • val5
+ diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.md b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.md new file mode 100644 index 000000000..0cfc0ffaa --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.md @@ -0,0 +1,7 @@ +# New variables + +| Variable                                                                                                                       | Description                                                                                                                    | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.sh b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.sh new file mode 100644 index 000000000..20c25b16a --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.changelog.sh @@ -0,0 +1,24 @@ + + +New variables + + +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ Variable  ┃ Description  ┃ +┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ +│ rougail.var1 │ The variable. │ +│  string   standard   mandatory    │ Validator: needs exactly 3 values │ +│ unique   multiple  │ Default: │ +│ │ - val1 │ +│ │ - val2 │ +│ │ - val3 │ +├───────────────────────────────────────┼──────────────────────────────────────┤ +│ rougail.var2 │ The variable. │ +│  string   standard   mandatory    │ Validators: │ +│ unique   multiple  │ - needs a minimum of 1 values │ +│ │ - needs a maximum of 4 values │ +│ │ Default: │ +│ │ - val4 │ +│ │ - val5 │ +└───────────────────────────────────────┴──────────────────────────────────────┘ + diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_without_family/01_6string_multi_length.gitlab.md new file mode 100644 index 000000000..e40317dd6 --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.gitlab.md @@ -0,0 +1,5 @@ +| Variable | Description | +|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.html b/tests/results/test_namespace_without_family/01_6string_multi_length.html new file mode 100644 index 000000000..d51a28410 --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.html @@ -0,0 +1,14 @@ + + + + + + + + +
Variable Description
rougail.var1
string standard mandatory unique multiple
The variable.
Validator: needs exactly 3 values
Default:
  • val1
  • +
  • val2
  • +
  • val3
rougail.var2
string standard mandatory unique multiple
The variable.
Validators:
  • needs a minimum of 1 values
  • +
  • needs a maximum of 4 values

Default:
  • val4
  • +
  • val5
+ diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.json b/tests/results/test_namespace_without_family/01_6string_multi_length.json new file mode 100644 index 000000000..e118e53a2 --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.json @@ -0,0 +1,121 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "path": "rougail", + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "standard" + } + ] + }, + "children": { + "var1": { + "type": "variable", + "default": { + "name": "Default", + "values": [ + "val1", + "val2", + "val3" + ] + }, + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "validators": { + "name": "Validator", + "values": "needs exactly 3 values" + }, + "path": "rougail.var1", + "names": [ + "var1" + ], + "description": "The variable.", + "gen_examples": [ + [ + "val1", + "val2", + "val3" + ] + ], + "mandatory_without_value": false + }, + "var2": { + "type": "variable", + "default": { + "name": "Default", + "values": [ + "val4", + "val5" + ] + }, + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "validators": { + "name": "Validators", + "values": [ + "needs a minimum of 1 values", + "needs a maximum of 4 values" + ] + }, + "path": "rougail.var2", + "names": [ + "var2" + ], + "description": "The variable.", + "gen_examples": [ + [ + "val4", + "val5" + ] + ], + "mandatory_without_value": false + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.md b/tests/results/test_namespace_without_family/01_6string_multi_length.md new file mode 100644 index 000000000..2500f58b1 --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.md @@ -0,0 +1,5 @@ +| Variable                                                                                                                       | Description                                                                                                                    | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test_namespace_without_family/01_6string_multi_length.sh b/tests/results/test_namespace_without_family/01_6string_multi_length.sh new file mode 100644 index 000000000..00e4f7723 --- /dev/null +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.sh @@ -0,0 +1,18 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ Variable  ┃ Description  ┃ +┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ +│ rougail.var1 │ The variable. │ +│  string   standard   mandatory    │ Validator: needs exactly 3 values │ +│ unique   multiple  │ Default: │ +│ │ - val1 │ +│ │ - val2 │ +│ │ - val3 │ +├───────────────────────────────────────┼──────────────────────────────────────┤ +│ rougail.var2 │ The variable. │ +│  string   standard   mandatory    │ Validators: │ +│ unique   multiple  │ - needs a minimum of 1 values │ +│ │ - needs a maximum of 4 values │ +│ │ Default: │ +│ │ - val4 │ +│ │ - val5 │ +└───────────────────────────────────────┴──────────────────────────────────────┘ diff --git a/tests/results/test_namespace_without_family/warnings_01_6string_multi_length b/tests/results/test_namespace_without_family/warnings_01_6string_multi_length new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/results/test_namespace_without_family/warnings_01_6string_multi_length @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.gitlab.md b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.gitlab.md index ac3c9a869..6662767ed 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.gitlab.md +++ b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.gitlab.md @@ -1,13 +1,10 @@
New variables -| Variable | Description | -|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| -| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | -| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | +| Variable | Description | +|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | +| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.md b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.md index a53cdb29a..148ec5f0e 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.md +++ b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.md @@ -3,9 +3,6 @@ | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | | **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.gitlab.md index 455249105..413948759 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.gitlab.md +++ b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.gitlab.md @@ -1,9 +1,6 @@ -| Variable | Description | -|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| -| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | -| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | +| Variable | Description | +|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | +| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.md index 4da9f2553..e23228ffd 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.md +++ b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.md @@ -1,9 +1,6 @@ | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | -| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value -of -a -variable! | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value
of
a
variable! | | **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. | diff --git a/tests/results/test_without_family/01_6string_multi_length.adoc b/tests/results/test_without_family/01_6string_multi_length.adoc new file mode 100644 index 000000000..bc7a95d0a --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.adoc @@ -0,0 +1,30 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validator**: needs exactly 3 values + +**Default**: + +* val1 +* val2 +* val3 +| + +**var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validators**: + +* needs a minimum of 1 values +* needs a maximum of 4 values + +**Default**: + +* val4 +* val5 +|==== + diff --git a/tests/results/test_without_family/01_6string_multi_length.changelog.adoc b/tests/results/test_without_family/01_6string_multi_length.changelog.adoc new file mode 100644 index 000000000..a487ee965 --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.changelog.adoc @@ -0,0 +1,32 @@ +== New variables + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validator**: needs exactly 3 values + +**Default**: + +* val1 +* val2 +* val3 +| + +**var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +The variable. + +**Validators**: + +* needs a minimum of 1 values +* needs a maximum of 4 values + +**Default**: + +* val4 +* val5 +|==== + diff --git a/tests/results/test_without_family/01_6string_multi_length.changelog.gitlab.md b/tests/results/test_without_family/01_6string_multi_length.changelog.gitlab.md new file mode 100644 index 000000000..b078a8eeb --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.changelog.gitlab.md @@ -0,0 +1,9 @@ +
New variables + +| Variable | Description | +|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + +
+ diff --git a/tests/results/test_without_family/01_6string_multi_length.changelog.html b/tests/results/test_without_family/01_6string_multi_length.changelog.html new file mode 100644 index 000000000..7464e3f1e --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.changelog.html @@ -0,0 +1,16 @@ +

New variables

+ + + + + + + + + +
Variable Description
var1
string standard mandatory unique multiple
The variable.
Validator: needs exactly 3 values
Default:
  • val1
  • +
  • val2
  • +
  • val3
var2
string standard mandatory unique multiple
The variable.
Validators:
  • needs a minimum of 1 values
  • +
  • needs a maximum of 4 values

Default:
  • val4
  • +
  • val5
+ diff --git a/tests/results/test_without_family/01_6string_multi_length.changelog.md b/tests/results/test_without_family/01_6string_multi_length.changelog.md new file mode 100644 index 000000000..83f711240 --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.changelog.md @@ -0,0 +1,7 @@ +# New variables + +| Variable                                                                                                                       | Description                                                                                                                    | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test_without_family/01_6string_multi_length.changelog.sh b/tests/results/test_without_family/01_6string_multi_length.changelog.sh new file mode 100644 index 000000000..61bb6ec1a --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.changelog.sh @@ -0,0 +1,24 @@ + + +New variables + + +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ Variable  ┃ Description  ┃ +┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ +│ var1 │ The variable. │ +│  string   standard   mandatory    │ Validator: needs exactly 3 values │ +│ unique   multiple  │ Default: │ +│ │ - val1 │ +│ │ - val2 │ +│ │ - val3 │ +├───────────────────────────────────────┼──────────────────────────────────────┤ +│ var2 │ The variable. │ +│  string   standard   mandatory    │ Validators: │ +│ unique   multiple  │ - needs a minimum of 1 values │ +│ │ - needs a maximum of 4 values │ +│ │ Default: │ +│ │ - val4 │ +│ │ - val5 │ +└───────────────────────────────────────┴──────────────────────────────────────┘ + diff --git a/tests/results/test_without_family/01_6string_multi_length.gitlab.md b/tests/results/test_without_family/01_6string_multi_length.gitlab.md new file mode 100644 index 000000000..9bf6c884e --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.gitlab.md @@ -0,0 +1,5 @@ +| Variable | Description | +|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test_without_family/01_6string_multi_length.html b/tests/results/test_without_family/01_6string_multi_length.html new file mode 100644 index 000000000..9013f080d --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.html @@ -0,0 +1,14 @@ + + + + + + + + +
Variable Description
var1
string standard mandatory unique multiple
The variable.
Validator: needs exactly 3 values
Default:
  • val1
  • +
  • val2
  • +
  • val3
var2
string standard mandatory unique multiple
The variable.
Validators:
  • needs a minimum of 1 values
  • +
  • needs a maximum of 4 values

Default:
  • val4
  • +
  • val5
+ diff --git a/tests/results/test_without_family/01_6string_multi_length.json b/tests/results/test_without_family/01_6string_multi_length.json new file mode 100644 index 000000000..f0f3dc5c3 --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.json @@ -0,0 +1,103 @@ +{ + "var1": { + "type": "variable", + "default": { + "name": "Default", + "values": [ + "val1", + "val2", + "val3" + ] + }, + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "validators": { + "name": "Validator", + "values": "needs exactly 3 values" + }, + "path": "var1", + "names": [ + "var1" + ], + "description": "The variable.", + "gen_examples": [ + [ + "val1", + "val2", + "val3" + ] + ], + "mandatory_without_value": false + }, + "var2": { + "type": "variable", + "default": { + "name": "Default", + "values": [ + "val4", + "val5" + ] + }, + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "validators": { + "name": "Validators", + "values": [ + "needs a minimum of 1 values", + "needs a maximum of 4 values" + ] + }, + "path": "var2", + "names": [ + "var2" + ], + "description": "The variable.", + "gen_examples": [ + [ + "val4", + "val5" + ] + ], + "mandatory_without_value": false + } +} \ No newline at end of file diff --git a/tests/results/test_without_family/01_6string_multi_length.md b/tests/results/test_without_family/01_6string_multi_length.md new file mode 100644 index 000000000..f6f3f9a0c --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.md @@ -0,0 +1,5 @@ +| Variable                                                                                                                       | Description                                                                                                                    | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validator**: needs exactly 3 values
**Default**:
- val1
- val2
- val3 | +| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.
**Validators**:
- needs a minimum of 1 values
- needs a maximum of 4 values
**Default**:
- val4
- val5 | + diff --git a/tests/results/test_without_family/01_6string_multi_length.sh b/tests/results/test_without_family/01_6string_multi_length.sh new file mode 100644 index 000000000..60f4b2eeb --- /dev/null +++ b/tests/results/test_without_family/01_6string_multi_length.sh @@ -0,0 +1,18 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ Variable  ┃ Description  ┃ +┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ +│ var1 │ The variable. │ +│  string   standard   mandatory    │ Validator: needs exactly 3 values │ +│ unique   multiple  │ Default: │ +│ │ - val1 │ +│ │ - val2 │ +│ │ - val3 │ +├───────────────────────────────────────┼──────────────────────────────────────┤ +│ var2 │ The variable. │ +│  string   standard   mandatory    │ Validators: │ +│ unique   multiple  │ - needs a minimum of 1 values │ +│ │ - needs a maximum of 4 values │ +│ │ Default: │ +│ │ - val4 │ +│ │ - val5 │ +└───────────────────────────────────────┴──────────────────────────────────────┘ diff --git a/tests/results/test_without_family/warnings_01_6string_multi_length b/tests/results/test_without_family/warnings_01_6string_multi_length new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/results/test_without_family/warnings_01_6string_multi_length @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tests/root_a_family.adoc b/tests/root_a_family.adoc index cb56ecea7..c7b7e2723 100644 --- a/tests/root_a_family.adoc +++ b/tests/root_a_family.adoc @@ -3,8 +3,6 @@ **a_family.a_second_family** - - [cols="1a,1a"] |==== | Variable | Description diff --git a/tests/root_a_family.gitlab.md b/tests/root_a_family.gitlab.md index 624115310..23535155e 100644 --- a/tests/root_a_family.gitlab.md +++ b/tests/root_a_family.gitlab.md @@ -1,9 +1,7 @@
A second family >>> [!note] Informations -**a_family.a_second_family**
- - +
**a_family.a_second_family** >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------| @@ -14,9 +12,7 @@
An other family >>> [!note] Informations -**a_family.an_other_family**
*`hidden`* - -**Hidden**: when the variable "[`A boolean variable`](#a_family.a_second_family.a_variable)" has the value "true" +
**a_family.an_other_family**
*`hidden`*
**Hidden**: when the variable "[`A boolean variable`](#a_family.a_second_family.a_variable)" has the value "true" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| diff --git a/tests/root_a_family.html b/tests/root_a_family.html index 41d3a757f..06582785a 100644 --- a/tests/root_a_family.html +++ b/tests/root_a_family.html @@ -2,8 +2,6 @@ a_family.a_second_family - - diff --git a/tests/root_a_family.md b/tests/root_a_family.md index 8b8fffa25..e14b548a9 100644 --- a/tests/root_a_family.md +++ b/tests/root_a_family.md @@ -1,8 +1,10 @@ # A second family -**a_family.a_second_family** +| Informations | +|:------------| +| **a_family.a_second_family** | | Variable                                                                                         | Description                                                                                      | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -10,11 +12,11 @@ # An other family -**a_family.an_other_family** -*`hidden`* -**Hidden**: when the variable "a_family.a_second_family.a_variable" has the value "true" +| Informations | +|:------------| +| **a_family.an_other_family**
*`hidden`*
**Hidden**: when the variable "a_family.a_second_family.a_variable" has the value "true" | | Variable                                                                                         | Description                                                                                      | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/root_a_family.sh b/tests/root_a_family.sh index 1723d319c..1731ee1aa 100644 --- a/tests/root_a_family.sh +++ b/tests/root_a_family.sh @@ -3,14 +3,9 @@ A second family - a_family.a_second_family - - - - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -23,18 +18,14 @@ An other family - a_family.an_other_family -  hidden  - Hidden: when the variable "a_family.a_second_family.a_variable" has the value "true" - ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Variable  ┃ Description  ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
Variable Description